normalize-port
v1.0.0
Published
Normalize a port into a number, string, or false
Downloads
562
Readme
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.