0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00
nodejs/doc/api/synopsis.markdown

26 lines
646 B
Markdown
Raw Normal View History

2012-02-27 20:09:34 +01:00
# Synopsis
<!--type=misc-->
2010-10-28 14:18:16 +02:00
An example of a [web server][] written with Node.js which responds with
'Hello World':
2010-10-28 14:18:16 +02:00
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
To run the server, put the code into a file called `example.js` and execute
it with the node program
2010-10-28 14:18:16 +02:00
> node example.js
2010-10-28 14:18:16 +02:00
Server running at http://127.0.0.1:8124/
All of the examples in the documentation can be run similarly.
[web server]: http.html