Skip to content

Instantly share code, notes, and snippets.

@maximgatilin
Forked from nielswh/new_gist_file
Created April 24, 2018 12:42
Show Gist options
  • Save maximgatilin/8953b0dcd3462487dc98189f8a3b786c to your computer and use it in GitHub Desktop.
Save maximgatilin/8953b0dcd3462487dc98189f8a3b786c 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment