- Engineering
- Computer Science
- webserverjs load module http var http requirehttp create...
Question: webserverjs load module http var http requirehttp create...
Question details
/ webserver.js
//load module http
var http = require('http');
//create a new instance of http.Server
//Reference https://nodejs.org/api/http.html#http_http_createserver_options_requestlistener
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Praneet Ahuja\n');
}).listen(80);
console.log('Server running on port 80.');
Please edit this webserver.js file to include your name and code .
Include code of your file and a screenshot of the result.
Solution by an expert tutor
