Skip to content

Instantly share code, notes, and snippets.

View CuevasJulian's full-sized avatar

Julian David Cuevas CuevasJulian

  • Universidad Icesi
  • Cali - Colombia
View GitHub Profile
@dineshsprabu
dineshsprabu / forever_npm_start
Last active June 9, 2022 12:58
Forever for NPM applications starting with 'npm start'
/*
If your package.json file contains "start": "node ./bin/www"
Use the following command to bring up your app with forever
*/
forever start --minUptime 1000 --spinSleepTime 1000 ./bin/www
/* Check list of forever process using the command */
forever list