Jason Smylnycky b4d51d194c Converted url.parse over to URL object
Updated 'var' to let/const where appropriate
2020-01-16 10:41:45 -05:00

4 lines
149 B
JavaScript

require('http').createServer(function(req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello world!');
}).listen(9000);