1.0.5 • Published 6 years ago

is-port-busy v1.0.5

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

is-port-busy

Shippable branch npm Linked In Twitter Follow

A simple node module to check if a TCP port is busy on the local machine. See also is-port-free

Installation

$ npm install --save is-port-busy

Example

var isPortBusy = require('is-port-busy');

isPortBusy(8080).then(function(){
    console.log('yes');
})
.catch(function(){
    console.log('no');
});

Running tests

Install dev dependencies and run tests:

$ npm install -d && npm test

License

Licensed under ISC License © John Doherty