Table of Contents

Node - Web Server

About

What is a Web Server? known also as HTTP server in Node.

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

Node - Express (Web Framework)

browsersync

Browsersync.io

http-server

with npm

npm install http-server -g
http-server