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