使用json配置模式时,PM2中的--node-args

时间:2017-02-17 07:47:26

标签: json node.js pm2

我有一个问题,那就是如何传递" - node-args"使用json配置模式时PM2中的参数,如下所示:

  

pm2 start --node-args =" - debug = 5858" myPm2Config.json

嗯,我知道我可以将参数写入myPm2Config.json文件,但我不想这样做,因为我想将两个启动命令作为" debug"和"生产"启动应用程序的模式,例如" pm2_run"和" pm2_debug"," pm2_debug"命令--node-args参数和" pm2_run"不,而且我不想制作两个" myPm2Config.json"文件,因为这意味着如果需要更改某些内容,我将需要更改两个json配置文件,那么,有没有简单的方法呢?谢谢你们!

1 个答案:

答案 0 :(得分:1)

我找到了解决方案!那是使用js config而不是json config。

首先,我创建了一个pm2.config.js文件。 (标记:文件名必须以.config.js 结尾)

//[pm2.config.js]

let config = {
  apps : [{
    name        : "node_shells",
    script      : "./bin/www",
    log_date_format  : "YYYY-MM-DD HH:mm:SS",
    log_file   : "logs/pm2.log",
    error_file : "logs/pm2-err.log",
    out_file   : "logs/pm2-out.log",
    pid_file   : "logs/pm2.pid",
    watch      :  true,
    ignore_watch : ["logs/*", "node_modules/*", "uploads/*"]
  }]
}

let debug_mode = false;
for(let arg of process.argv) {
  if(arg == '-debug') {
    debug_mode = true;
    break;
  }
}

if(debug_mode) {
  console.log('== launching in debug mode ==');
  config.apps[0].node_args = "--debug=5858";
}
else {
  console.log('== launching in production mode ==');
  config.apps[0].node_args = " ";   //*require! or it will always uses latest debug options
}

module.exports = config;

然后,创建两个启动文件:“pm2_run”和“pm2_debug”。

#[pm2_run]
pm2 start pm2.config.js
#[pm2_debug]
pm2 start pm2.config.js -- -debug

现在,切换调试模式或生产模式很容易!