kill-process-on-port
v1.0.2
Published
Not responding, unresponsive process killer. Kill process on port you wanna use.
Readme
Description
If you work with application that occupies some port and sometimes hangs up - you definitely should start using kill-process-on-port. It shows you a prompt in console, then you choose to either kill and application occupying port or not. Safe and sound!
Installation
npm i kill-process-on-portFeatures
- TypeScript with documentation in comments.
- Both Windows and Linux support. Uses built-in commands:
netstaton Windows andfuseron Linux. - Prompts for confirmation before killing process (by inquirer).
Usage
import {
killProcessOnPort,
} from 'kill-process-on-port';
(async () => {
await killProcessOnPort(3000).catch((err) => {
console.log(err);
});
})();