An alternative to forever on Linux is nohup.
To start a nohup instance
app.js
www
nohup nodejs app.js &
To kill the process
ps -ef|grep nodejs
kill -9 <the process number>