I have a few ExpressJS applications that use Forever to keep things always moving. The scripts below are what I use invoke the servers.
Start
Create a my-app/start
file.
#!/bin/bash
# Invoke the Forever module (to START our Node.js server).
./node_modules/forever/bin/forever \
start \
-al forever.log \
-ao out.log \
-ae err.log \
../app.js
Stop
Create a my-app/stop
file.
#!/bin/bash
# Invoke the Forever module (to STOP our Node.js server).
./node_modules/forever/bin/forever stop ../app.js
Start & Stop
Start
./start
Stop
./stop
Subscribe to new posts
Processing your application
Please check your inbox and click the link to confirm your subscription
There was an error sending the email