永远使用时的Node.js参数

时间:2014-11-11 05:32:39

标签: node.js forever

我目前正在使用永远在我们的开发环境中运行我的node.js应用程序。我目前正在努力的是如何在使用“forever start”

时传递node.js参数

这是一个我需要将数字和日期传递给节点的示例。它没有用,所以任何帮助都会受到赞赏。

forever -c 'node 8010 "2014-11-11 12:00:00"' start app.js

1 个答案:

答案 0 :(得分:16)

根据文档,脚本参数在调用之后。 https://github.com/nodejitsu/forever

用法:forever [action] [options] SCRIPT [script-options]

forever start app.js 8010 "2014-11-11 12:00:00"

强烈建议您在项目中使用nconf https://github.com/flatiron/nconf来获取这些参数。