Skip to content

Instantly share code, notes, and snippets.

@nielswh
Created October 28, 2013 23:47
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nielswh/7206847 to your computer and use it in GitHub Desktop.
Save nielswh/7206847 to your computer and use it in GitHub Desktop.
Kill node.js Process on OSX
ps aux | grep node
kill -9 PID
(Replace PID with the process Id of the Node)
@jdnichollsc
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment