github.com/webonyx/up@v0.7.4-0.20180808230834-91b94e551323/handler/testdata/node-pkg/app.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)