HTTP Server
Following are steps to create a very simple http server. We need http module, which is part of default installation of nodejs.
Please note:- nodejs should be already installed. If not, follow the installation steps
Create a file app.js at any location on your computer and add below code to it:
var http = require('http');
var reqListener = function(req,res){
res.writeHead(200,{'Content-Type':'text/plain'});
res.write('Hello World');
res.end();
}
httpServer = http.createServer(reqListener);
httpServer.listen(8080);
Above code will create an http server.
Now, start your nodejs server using following command:-
node app.js
Now, open link http://localhost:8080/ in your favourite browser and you should see “Hello World” on the page.