1.0.0 • Published 7 years ago

normalize-port v1.0.0

Weekly downloads
142
License
MIT
Repository
-
Last release
7 years ago

normalize-port

A handy function that normalizes a port into a number, string, or false.

install

npm install --save normalize-port

usage

const http = require('http');
const normalizePort = require('normalize-port');

const port = normalizePort(process.env.PORT || '3000');

const server = http.createServer(listenerOrApp).listen(port, () => {
  console.log(`listening on ${port}`)
})

credit

I just pulled this little function out of the default express-generator template.