| 
				
					 | 
			2 anos atrás | |
|---|---|---|
| .. | ||
| bin | 2 anos atrás | |
| lib | 2 anos atrás | |
| node_modules | 2 anos atrás | |
| HISTORY.md | 2 anos atrás | |
| LICENSE | 2 anos atrás | |
| README.md | 2 anos atrás | |
| index.js | 2 anos atrás | |
| package.json | 2 anos atrás | |
Node.js implementation of port detector
$ npm i detect-port --save
const detect = require('detect-port');
/**
 * callback usage
 */
detect(port, (err, _port) => {
  if (err) {
    console.log(err);
  }
  if (port == _port) {
    console.log(`port: ${port} was not occupied`);
  } else {
    console.log(`port: ${port} was occupied, try port: ${_port}`);
  }
});
/**
 * for a yield syntax instead of callback function implement
 */
const co = require('co');
co(function *() {
  const _port = yield detect(port);
  if (port == _port) {
    console.log(`port: ${port} was not occupied`);
  } else {
    console.log(`port: ${port} was occupied, try port: ${_port}`);
  }
});
/**
 * use as a promise
 */
detect(port)
  .then(_port => {
    if (port == _port) {
      console.log(`port: ${port} was not occupied`);
    } else {
      console.log(`port: ${port} was occupied, try port: ${_port}`);
    }
  })
  .catch(err => {
    console.log(err);
  });
$ npm i detect-port -g
# get an available port randomly
$ detect
# detect pointed port
$ detect 80
# output verbose log
$ detect --verbose
# more help
$ detect --help
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
xudafeng  | 
fengmk2  | 
ziczhu  | 
gaearon  | 
popomore  | 
jsw0528  | 
|---|
This project follows the git-contributor spec, auto upated at Tue Aug 14 2018 12:43:52 GMT+0800.