detect-port

Node.js implementation of port detector
Who are using or has used
For more
Usage
npm i detect-port
CommonJS
const { detect } = require('detect-port');
detect(port)
.then(realPort => {
if (port == realPort) {
console.log(`port: ${port} was not occupied`);
} else {
console.log(`port: ${port} was occupied, try port: ${realPort}`);
}
})
.catch(err => {
console.log(err);
});
ESM and TypeScript
import { detect } from 'detect-port';
detect(port)
.then(realPort => {
if (port == realPort) {
console.log(`port: ${port} was not occupied`);
} else {
console.log(`port: ${port} was occupied, try port: ${realPort}`);
}
})
.catch(err => {
console.log(err);
});
Command Line Tool
npm i detect-port -g
Quick Start
$ detect
$ detect 80
$ detect --verbose
$ detect --help
FAQ
Most likely network error, check that your /etc/hosts and make sure the content below:
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
License
MIT
Contributors

Made with contributors-img.