find-pid
v0.1.1
Published
[![NPM version][npm-image]][npm-url] [![build status][travis-image]][travis-url] [![build status][appveyor-image]][appveyor-url] [![Test coverage][codecov-image]][codecov-url] [![David deps][david-image]][david-url] [![Known Vulnerabilities][snyk-image]][
Downloads
6
Readme
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