##通常起動
$ node app.js hikisu
###引数の取り方
console.log(process.arg[2]);
/*->hikisu*/
##PM2でデーモン起動する場合
$ pm2 start app.js --node-args="引数"
となるので
$ pm2 start app.js --node-args="app.js hikisu"
とすればOKです。
Go to list of users who liked
More than 5 years have passed since last update.
##通常起動
$ node app.js hikisu
###引数の取り方
console.log(process.arg[2]);
/*->hikisu*/
##PM2でデーモン起動する場合
$ pm2 start app.js --node-args="引数"
となるので
$ pm2 start app.js --node-args="app.js hikisu"
とすればOKです。
Register as a new user and use Qiita more conveniently
Go to list of users who liked