Get PID from a port
npm install pid-from-port> Get PID from a port
```
$ npm install pid-from-port
`js
const pidFromPort = require('pid-from-port');
(async () => {
try {
console.log(await pidFromPort(8080));
//=> 1337
const pids = await pidFromPort.all([8080, 22]);
console.log(pids.get(8080));
//=> 1337
console.log(pids.get(22));
//=> 12345
} catch (err) {
console.log(err);
//=> 'Couldn't find a process with port 8080'`
}
})();
#### port
Type: number
Port to lookup.
Returns a Promise
#### ports
Type: Array
Ports to lookup.
Get all PIDs from ports.
Returns a Promise
MIT © Kevin Martensson