Node js

Loading basic HTML in Node.js

Pinterest LinkedIn Tumblr

Loading basic HTML in Node.js

var http = require(‘http’);
var fs = require(‘fs’);

http.createServer(function(request, response) {
response.writeHeader(200, {“Content-Type”: “text/html”});
var readSream = fs.createReadStream(‘index.html’,’utf8′)
readSream.pipe(response);
}).listen(3000);

console.log(“server is running on port number “);

Write A Comment