is-port-busy

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

Usage no npm install needed!

<script type="module">
  import isPortBusy from 'https://cdn.skypack.dev/is-port-busy';
</script>

README

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