About
Articles Related
List
Node Basic Library
With http.createServer
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html');
res.write(htmlPage);
res.end();
}).listen(port);
Node based Library / Application
Express
browsersync
http-server
with npm
npm install http-server -g
http-server