github.com/skabbes/up@v0.2.1/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)