Wednesday, 21 February 2018

Hello World in Node js



Sample app in Node.js

Hello World App 


var http = require('http');

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type''text/html'});
    res.end('Hello World!');
}).listen(1337);


As simple it is , you are seeing .


sample app in nodejs
Node.js



0 comments:

Post a Comment