11 June, 2014

Kill off hung node.js processes

Venturing into node-land and swopping from Windows to Mac OS I’m going to start documenting a few “notes to self” here.

If your node process hangs. For me it was a EADDRINUSE error when ever I tried to start the node app I found it quick to kill it using:

> ps aux | grep node
>  kill -9 <pid><pid></pid></pid>

I also read that

> killall node

Shourl work, but havn’t tried it.


Tags: ,