Run Node.JS forever
5 March, 2021 by
Run Node.JS forever
Administrator
| No comments yet


Run Node.JS forever

$> forever start -c "npm start" ./

The above is for an npm Express server.
For more information on forever check it’s homepage https://github.com/foreverjs/forever

Now your app will be available at

http://yourdomain.com:3000

Setup reverse proxy

This step will allow you to get rid of the :3000 port number

Sign in to leave a comment