PM2 - 运行 带有 NodeJS 参数的 Coffeescript 文件

PM2 - Run Coffeescript file with NodeJS Parameters

我有一个用 coffeescript 编写的 NodeJS 应用程序,它需要我设置 stack_size 参数才能使其正确 运行。该命令看起来像这样来获取它 运行ning.

coffee --nodejs --stack_size=65000 app.coffee

现在我想将其集成到 PM2 中,但不知道如何添加 stack_size 这样的参数。我该怎么做?

好了:

pm2 start app.coffee --node-args="--max-stack-size=65000"

Documentation

请注意,由于 pm2@2.x 您必须先安装咖啡支持:

pm2 install coffeescript