Ticker

6/recent/ticker-posts

Node.js Tutorial for Beginners 14 - Using node.js for serving HTML page



var fs = require('fs');
var http = require('http');


http.createServer(function (req, res) {
// Send the HTTP header
// HTTP Status: 200 : OK
// Content Type: text/html

res.writeHead(200, {'Content-Type': 'text/html'});
var readStream = fs.createReadStream('index.html', 'utf8');
readStream.pipe(res);
}).listen(3000);

// Console will print the message
console.log("server is running on http://127.0.0.1:3000/")

إرسال تعليق

0 تعليقات