Socket
Socket
Sign inDemoInstall

pick-port

Package Overview
Dependencies
2
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pick-port

Get a free TCP or UDP port for the given IP address


Version published
Weekly downloads
4.1K
decreased by-10.78%
Maintainers
2
Install size
69.6 kB
Created
Weekly downloads
 

Readme

Source

pick-port

Get an available TCP or UDP port for the given IP address.

$ npm install pick-port

Usage

import { pickPort } from 'pick-port';

Get a random UDP port in IP 0.0.0.0:

const port = await pickPort({ type: 'udp' });

Get a TCP port in a specific IP and port range:

const port = await pickPort({
	type: 'tcp',
	ip: '192.168.10.111',
	minPort: 8000,
	maxPort: 9000,
});

API

async pickPort({ type, ip, minPort, maxPort, reserveTimeout }): Promise

Resolves with an available port or rejects with an error otherwise.

OptionTypeDescriptionRequiredDefault
typeString'udp' or 'tcp'.Yes
ipStringIPv4 or IPv6 address for which a free port is requested.No'0.0.0.0'
minPortNumberMinimum port.No10000
maxPortNumberMaximum port.No20000
reserveTimeoutNumberTimeout in seconds during which a returned port will be internally reserved and prevented of being returned on a future call before the timeout has elapsed.No5
  • @returns {Number} A free port.

The reserveTimeout option provides the application with the required time to bind the free port before it is given again on a future call to this library.

Authors

License

ISC

Keywords

FAQs

Last updated on 12 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc