Skip to content

Commit 0752078

Browse files
committed
Improve the Getting Started guide.
1 parent 3020b2f commit 0752078

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

locale/en/docs/guides/getting-started-guide.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ layout: docs.hbs
55

66
# How do I start with Node.js after I installed it?
77

8-
Once you have installed Node, let's try building our first web server.
9-
Create a file named "app.js", and paste the following code:
8+
Once we have installed Node.js, let's build our first web server.
9+
Create a file named `app.js` containing the following contents:
1010

1111
```javascript
1212
const http = require('http');
@@ -25,4 +25,8 @@ server.listen(port, hostname, () => {
2525
});
2626
```
2727

28-
After that, run your web server using `node app.js`, visit `http://localhost:3000`, and you will see a message 'Hello World'
28+
Now, run your web server using `node app.js`. Visit `http://localhost:3000` and
29+
you will see a message saying "Hello World".
30+
31+
Refer to the [Introduction to Node.js](https://nodejs.dev/) for a more
32+
comprehensive guide to getting started with Node.js.

0 commit comments

Comments
 (0)