newport
v1.0.2
Published
Find an open port
Downloads
8
Maintainers
Readme
Newport
Find a new port that's available to be used in your program.
Install
$ npm install newport
Usage
var newport = require('newport')
// Get a new port that is available
newport(function(err, port){
if (err) throw err
console.log(port)
})
// Check if a port is available
newport(8080, function(err, port){
if (err) throw err
console.log(port)
})
License
The MIT License
Copyright (c) 2015 Montana Flynn http://anonfunction.com