var http = require('http'); http.createServer(function(req, res) { res.writeHead(200); res.end('hey'); }).listen(8010); console.log("edit")