server.js 212 Bytes Raw Blame History Permalink 1 2 3 4 5 6 var http = require('http'); var port = process.env.port || 1337; http.createServer(function (req, res) { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World\n'); }).listen(port);