server-summary

Log basic server information after an http server start as
ndjson.
Features
- log local url (useful for tools like
opnr)
- log port
- log environment
- log process id (useful for
dtrace(1), kill(1))
Installation
$ npm install server-summary
Usage
const serverSummary = require('server-summary')
const http = require('http')
process.env.NODE_ENV = 'development'
const server = http.createServer()
server.listen(1337, serverSummary(server, process.stdout))
Why?
Knowing on what port your server is listening is nice to have. This module
logs some basic information after your server has started to stdout.
License
MIT