If the behavior of console.log has not been changed, node outputs console.log logs to standard application output ( stdout ). If you are running the node application in the console or using ssh, you should see the logs there. Otherwise, try redirecting the stdout of your application to a file so that you can see it even if you started it without a console, as follows: node myapp.js > logfile
The preferred way would be a Forever user to make sure the application is always on, and there you can redirect your output (both stdout and stderr) as follows:
/>forever -o forever.out -e forever.err myapp.js
source share