github.com/webonyx/up@v0.7.4-0.20180808230834-91b94e551323/http/relay/testdata/node/server.js (about) 1 const http = require('http') 2 const port = parseInt(process.env.PORT, 10) 3 4 http.createServer((req, res) => { 5 res.end('Node') 6 }).listen(port)