New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

freeport-async

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

freeport-async

Uses mikeal's code to find an open port in a given range

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
838K
increased by6.23%
Maintainers
1
Weekly downloads
 
Created
Source

freeport

Finds an available port for your application to use. You can specify a range where to look for an available port. And can also find a range of available ports for you to use. You can also be used to test to see if a given port is available.

All functions are async and return Promises.

Usage:

    var freeportAsync = require('freeport-async');

    var portICanUse = await freeportAsync();

    var portIn9000Range = await freeportAsync(9000);

    var isPort5000Available = await freeportAsync.availableAsync(5000);

    var listOf5ConsecutiveAvailablePorts = await freeportAsync.rangeAsync(5);

    var freeRangeIn12000Range = await freeportAsync.rangeAsync(3, 12000);

See also https://gist.github.com/mikeal/1840641

Keywords

FAQs

Package last updated on 14 May 2015

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