1.0.1 • Published 2 years ago
end-port-process v1.0.1
Install
$ npm install end-port-processUsage
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]