Package Exports
- nextport
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nextport) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
nextport
Node.js module to get the next free port
Install
$ npm install nextportUsage
const nextPort = require('getport');
nextPort(2000, port => {
if (port) {
console.log('next free port:', port);
} else {
console.log('no free port >= 2000 found');
}
});
License
MIT (c) Sebastian Raff