Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
get-port-please
Advanced tools
The `get-port-please` npm package is designed to help developers find an available port on the host machine. It is particularly useful in scenarios where an application needs to start a server but must avoid port conflicts with other applications. This package offers flexibility in selecting ports, including the ability to specify preferred port ranges or fallback to any available port if the preferred ones are occupied.
Getting an available port
This feature allows you to get an available port on the machine. If no arguments are passed, it returns any available port.
const getPort = require('get-port-please');
getPort().then(port => {
console.log(`Available port: ${port}`);
});
Specifying preferred ports
This feature enables specifying an array of preferred ports. The function will return the first available port from the specified list or any available port if none from the list are free.
const getPort = require('get-port-please');
getPort({ preferredPorts: [3000, 3001, 3002] }).then(port => {
console.log(`Available port: ${port}`);
});
Specifying port ranges
This feature allows specifying ranges of ports to check for availability. It's useful when you need a port within a specific range.
const getPort = require('get-port-please');
getPort({ portRanges: [{ from: 8000, to: 8005 }] }).then(port => {
console.log(`Available port within range: ${port}`);
});
Similar to `get-port-please`, `portfinder` provides a way to get an available port on the host machine. However, `portfinder` focuses more on finding an open port by incrementing from a base port, rather than specifying preferred ports or ranges.
The `get-port` package also helps in finding an available port. While it shares similar basic functionality with `get-port-please`, it does not offer the same level of control over specifying port ranges or preferred port lists.
Get an available TCP port to listen
Install package:
npm i get-port-please
// ESM
import {
getPort,
checkPort,
getRandomPort,
waitForPort,
} from "get-port-please";
// CommonJS
const {
getPort,
checkPort,
getRandomPort,
waitForPort,
} = require("get-port-please");
getPort(options?: GetPortOptions): Promise<number>
checkPort(port: number, host?: string): Promise<number | false>
waitForPort(port: number, options): Promise<number | false>
Try sequence is: port > ports > random
interface GetPortOptions {
name?: string;
random?: boolean;
port?: number;
portRange?: [fromInclusive: number, toInclusive: number];
ports?: number[];
host?: string;
memoDir?: string;
memoName?: string;
}
name
Unique name for port memorizing. Default is default
.
random
If enabled, port
and ports
will be ignored. Default is false
.
port
First port to check. Default is process.env.PORT || 3000
ports
Extended ports to check.
portRange
Extended port range to check.
The range's start and end are inclusive, i.e. it is [start, end]
in the mathematical notion.
Reversed port ranges are not supported. If start > end
, then an empty range will be returned.
alternativePortRange
Alternative port range to check as fallback when none of the ports are available.
The range's start and end are inclusive, i.e. it is [start, end]
in the mathematical notion.
Reversed port ranges are not supported. If start > end
, then an empty range will be returned.
The default range is [3000, 3100]
(only when port
is unspecified).
host
The host to check. Default is process.env.HOST
otherwise all available hosts will be checked.
MIT
v3.1.2
GetPortError
message (#77)FAQs
Get an available TCP port to listen
The npm package get-port-please receives a total of 1,299,171 weekly downloads. As such, get-port-please popularity was classified as popular.
We found that get-port-please demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.