Question: / 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

/ 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 ');

}).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.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!