gport

Gets the next available port on your localhost starting from the given port number.


Keywords
port, find, available, net, http, loacalhost
License
MIT
Install
npm install gport@1.1.1

Documentation

gport build status

Gets the next available port on your localhost starting from the given port number.

const getPort = require('gport')
const http = require('http')

getPort(check)
function check(port) {
  console.log(port) // some available port
}

Installation

npm install gport

API

getPort(port, cb)

Quick and dirty way to find an open port number on your localhost. Super small as it doesn't include any huge dependencies like other port finder libs. Inspired by https://gist.github.com/mikeal/1840641

Parameters:
Name Type Argument Description
port Number <optional>

start port, will be increased until an open one is found, when not supplied a random port will be used

cb function

called back with the open port

Source:

generated with docme

License

MIT