Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我永远使用 nodejs 来保持我的服务器正常运行。我需要传递一些 v8 选项。我可以通过 nodejs 命令行做到这一点,但我怎么能永远做到这一点?
forever start -c "node --harmony" app.js
而是指定一个 shell 脚本。让脚本callnode.sh包含该行
node --debug $1 $2 $3
你可以永远这样称呼它:
var forever = require('forever-monitor'); forever.start(['./callnode.sh', 'your_process.js', {});
或使用永久 cli 选项 -c