Menu BAR

FEEL FREE TO ASK ANY PROGRAM and please mention any error if you find it

13 Nov 2022

Node JS program to create a server

## Program to create a server in node.js language ##


var http = require ('http');
http.createServer( function (req, res) {
    res.writeHead (200, {'Content-type': 'text/plain'});
    res.end ('Hello World!!');
}).listen (8080);

===OUTPUT===

Hello World!!

No comments:

Post a Comment