-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #6167 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Robert Jefe Lindstädt <robert.lindstaedt@gmail.com>
- Loading branch information
1 parent
fa9d82d
commit ab84d69
Showing
2 changed files
with
23 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,43 @@ | ||
# Synopsis | ||
# Usage | ||
|
||
<!--type=misc--> | ||
|
||
`node [options] [v8 options] [script.js | -e "script"] [arguments]` | ||
|
||
Please see the [Command Line Options][] document for information about | ||
different options and ways to run scripts with Node. | ||
|
||
## Example | ||
|
||
An example of a [web server][] written with Node.js which responds with | ||
`'Hello World'`: | ||
|
||
```js | ||
const http = require('http'); | ||
|
||
http.createServer( (request, response) => { | ||
response.writeHead(200, {'Content-Type': 'text/plain'}); | ||
response.end('Hello World\n'); | ||
}).listen(8124); | ||
const hostname = '127.0.0.1'; | ||
const port = 3000; | ||
|
||
const server = http.createServer((req, res) => { | ||
res.statusCode = 200; | ||
res.setHeader('Content-Type', 'text/plain'); | ||
res.end('Hello World\n'); | ||
}); | ||
|
||
console.log('Server running at http://127.0.0.1:8124/'); | ||
server.listen(port, hostname, () => { | ||
console.log(`Server running at http://${hostname}:${port}/`); | ||
}); | ||
``` | ||
|
||
To run the server, put the code into a file called `example.js` and execute | ||
it with the node program | ||
it with Node.js: | ||
|
||
``` | ||
$ node example.js | ||
Server running at http://127.0.0.1:8124/ | ||
Server running at http://127.0.0.1:3000/ | ||
``` | ||
|
||
All of the examples in the documentation can be run similarly. | ||
|
||
[Command Line Options]: cli.html#cli_command_line_options | ||
[web server]: http.html |