Forever.js starting and restarting multiple scripts
问题 My web app has 3 main node.js components: website, feeds and jobs. To start these I am using forever: //forever.js var forever = require('forever'); function start(name){ forever.start( ['coffee', name + '.coffee'], { /* log options */ } ) }; start('website'); start('feeds'); start('jobs'); What I first noticed is that if I run script it wont run it as a daemon. ( Which is most likely normal ) node forever.js So what I did next was run the forever.js script with forever. I am not sure if this