Untitled
Anonymous
plain_text
11/03/2022 3:54 PM
336 B
16
Indexable
var http = require('http');
var handleRequest = function (req, res){
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Welcome to Node\n');
};
var server = http.createServer(handleRequest);
server.listen(3000,'localhost');
Editor is loading...