Skip to content
/ gport Public

Gets the next available port starting from the given port number.

License

Notifications You must be signed in to change notification settings

thlorenz/gport

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Gets the next available port starting from the given port number.

Resources

License

Stars

Watchers

Forks

Packages

No packages published