Untitled
unknown
plain_text
3 years ago
251 B
7
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...