scripts/node_modules/is-port-reachable
2023-06-18 17:23:07 +02:00
..
index.d.ts up local groups, add panoramax upload file 2023-06-18 17:23:07 +02:00
index.js up local groups, add panoramax upload file 2023-06-18 17:23:07 +02:00
license up local groups, add panoramax upload file 2023-06-18 17:23:07 +02:00
package.json up local groups, add panoramax upload file 2023-06-18 17:23:07 +02:00
readme.md up local groups, add panoramax upload file 2023-06-18 17:23:07 +02:00

is-port-reachable

Check if a local or remote port is reachable

Install

npm install is-port-reachable

Usage

import isPortReachable from 'is-port-reachable';

console.log(await isPortReachable(80, {host: 'google.com'}));
//=> true

API

isPortReachable(options)

Returns Promise<boolean> for whether the port is reachable.

port

Type: number

The port to check.

options

Type: object

host

Required
Type: string
Example: 'localhost'

The host to check.

Can be a domain (optionally, with a sub-domain) or an IP address.

timeout

Type: number
Default: 1000

The time to wait in milliseconds before giving up.