mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
4e1023d6b4
PR-URL: https://github.com/nodejs/node/pull/4806 Reviewed-By: Stephan Belanger <admin@stephenbelanger.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
631 B
631 B
Synopsis
An example of a web server written with Node.js which responds with
'Hello World'
:
const http = require('http');
http.createServer( (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
$ node example.js
Server running at http://127.0.0.1:8124/
All of the examples in the documentation can be run similarly.