Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

find-free-ports

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

find-free-ports

Find multiple free ports on localhost

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.2K
decreased by-18.53%
Maintainers
1
Weekly downloads
 
Created
Source

This is a very small package that allows developers to find free ports on the local system. Unlike most other "find-free-port" utilities, this library allows scanning for multiple free ports at once, making sure that there are no doubles in the result.

This library has been benchmarked and parallelises the port checks using a customisable number of workers for optimal performance.

🔍 Found an issue? Please let me know in the issue tracker and we'll get it fixed ASAP.

npm i find-free-ports

Usage

const findFreePorts = require('find-free-ports');

async function init() {
  const [a, b, c, d] = await findFreePorts(4);
  // now do something interesting with the new ports ...
}

Development

We use TypeScript to check for human mistakes.

tsc --watch

You can run the tests with the following command:

npm test

⚠️ The tests may use a lot of resources so make sure your computer is up for the task. Also, due to race conditios with other applications that cannot be avoided, the tests may falsly fail or succeed in rare cases. Be sure to double-check any changes you make.

Similar Packages

License

The MIT License

Keywords

FAQs

Package last updated on 09 May 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc