end-port-process
v1.2.3
Published
```bash $ npm install end-port-process ```
Downloads
11
Maintainers
Readme
Install
$ npm install end-port-process
Usage
const portKill = require('end-port-process');
// single port
await portKill(1234);
// multiple ports
await portKill(1234, 6789);
// Always returns array of killed port numbers: [1234]