UNPKG

241 BJavaScriptView Raw
1var http = require('http');
2http.createServer(function (req, res) {
3
4 res.writeHead(200, {'Content-Type': 'text/plain'});
5 res.end('Hello World\n');
6
7}).listen(1337, '127.0.0.1');
8console.log('Server running at http://127.0.0.1:1337/');