Search code examples
node.jsupstart

Determine which node.js programs are running


Is there a way to check which node.js servers are currently running on a machine? I launch a web server using an Upstart script and would like to see or get some sort of notification if it has crashed.


Solution

  • In the bash shell (terminal window)

    Type:

    ps aux | grep node

    :)