1.2.3 • Published 1 year ago
end-port-process v1.2.3
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]