npm.io
0.1.1 • Published 9 years ago

find-pid

Licence
Version
0.1.1
Deps
1
Vulns
0
Weekly
0
Stars
2

NPM version build status build status Test coverage David deps Known Vulnerabilities npm download

Cross-platform api of finding pid under specified conditions.

Install

$ npm i find-pid

Note: For some linux distributions, netstat is not available util you install net-tools, run sudo apt-get install net-tools.

Example

  const findByPort = require('find-pid').byPort;
  findByPort(7777, (err, pid) => {
    console.log(pid);
  });

API

  • byPort(port, callback)

Find pid by port.

Contribute

Now the only api is byPort, other features is not planned until i really need it. But i am very happy to accept a PR :)

License

MIT

Keywords