var http = require('http') http.createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}) response.end('Breakup\n') }).listen(process.env.PORT)