2.0.3 • Published 3 years ago

find-open-port v2.0.3

Weekly downloads
56
License
BSD-3-Clause
Repository
github
Last release
3 years ago

nlm-chat nlm-github nlm-node nlm-version

Find an Open Port Build Status

Install

npm install --save find-open-port

Usage

const findPort = require('find-open-port');

findPort().then(port => {
  console.log(`You may now start listening on %d.${port}`);
});

findPort.isAvailable(80).then(available => {
  console.log(`Port 80 is ${available ? 'available' : 'not available'}`);
});