Kill the process running on a given TCP port on Windows, Linux and Mac
$ npm install cross-port-killer -Dimport { kill, killer } from 'cross-port-killer';
kill(9090).then(pids => {
console.log(pids)
})
// you could also kill pids manually if you know them... this would save you bringing up another lib, you are welcome.
killer.killByPid(12345).then(() => console.log('done'))
killer.killByPids([12345, 54321]).then(() => console.log('done'))This lib also comes with a CLI.
$ npm install cross-port-killer -g$ kill-port 9090On Linux/Mac this library depends on lsof in case you don't have it installed (perhaps you are using docker?) run:
$ apt-get install lsofOn Mac, It comes with the OS by default so nothing to worries.