github.com/apex/up@v1.7.1/handler/testdata/node-pkg-start/index.js (about) 1 const http = require('http') 2 const { PORT } = process.env 3 4 http.createServer((req, res) => { 5 res.end('Hello World') 6 }).listen(PORT)