This simple web server written in Node responds with "Hello World" for every request.
1 2 3 4 5 6 7 8 9 10 11 12 13 | // include "http" module var http = require( 'http' ); // create http server http.createServer( function (req, res) { // set response header with status code 200 and content-type res.writeHead(200, { 'Content-Type' : 'text/plain' }); // wirte some data to response stream res.end( 'Hello World\n' ); // set listener port to 1337, it can be changed }).listen(1337, '127.0.0.1' ); |
To run the above server code, put the code into a file "example.js" and execute it with the node program in the CMD:
After success executing server code, the result can accessible in the web browser with URL "http://127.0.0.1:1337/".