handler/testdata/node-pkg-start/index.js

Summary

Maintainability
A
0 mins
Test Coverage
const http = require('http')
const { PORT } = process.env

http.createServer((req, res) => {
  res.end('Hello World')
}).listen(PORT)