JSPM

nextport

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 702
  • Score
    100M100P100Q94821F
  • License MIT

get the next free port

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 nextport

Usage

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