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

get-ports

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get-ports - npm Package Compare versions

Comparing version

to
1.0.2

3

index.js

@@ -17,2 +17,5 @@ var mapLimit = require('map-limit')

}
if (!isFinite(maxPort)) {
throw new TypeError('maxPort must be a finite number')
}

@@ -19,0 +22,0 @@ var usedPorts = []

2

package.json
{
"name": "get-ports",
"version": "1.0.1",
"version": "1.0.2",
"description": "gets multiple open ports",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -42,3 +42,3 @@ # get-ports

If `maxPort` is specified, the portfinding will fail when it reaches that maximum port. Defaults to 60000.
If the finite number `maxPort` is specified, the portfinding will fail when it reaches that maximum port. Defaults to 60000.

@@ -45,0 +45,0 @@ The callback is called with `(err, ports)`, where `err` will be an Error if any of the portfindings failed (i.e. no open ports within range). If successful, `err` will be null and `ports` will be an array, parallel to `basePorts`, with the found port numbers.