nodemon all in one
daemon
后台守护进程
https:///remy/nodemon#nodemon
https://www.npmjs.com/package/nodemon
global
$ yarn global add nodemon
# OR
$ npm install -g nodemon
# global
$ nodemon ./server.js localhost 8080
$ nodemon --inspect ./server.js 80
$ yarn add -D nodemon
# OR
$ npm i -D nodemon
local
# local
$ ./node_modules/nodemon/bin/nodemon.js ./server.js localhost 8080
$ ./node_modules/nodemon/bin/nodemon.js --inspect ./server.js 80
# js !== cli ????❌
# $ ./node_modules/nodemon/bin/nodemon ./src/index.js
$ ./node_modules/nodemon/bin/nodemon.js ./src/index.js
daemon
后台守护进程
pm2
https://www.npmjs.com/package/pm2
docs
https://pm2.io/doc/en/runtime/quick-start/
$ yarn global add pm2
# $ pm2 [start|restart|stop|delete] ecosystem.config.js
$ pm2 start ecosystem.config.js
$ pm2 restart ecosystem.config.js
$ pm2 stop ecosystem.config.js
# $ pm2 delete ecosystem.config.js
$ yarn add -D pm2
$ ./node_modules/pm2/bin/pm2 start ecosystem.config.js
$ ./node_modules/pm2/bin/pm2 restart ecosystem.config.js
$ ./node_modules/pm2/bin/pm2 stop ecosystem.config.js
# $ ./node_modules/pm2/bin/pm2 delete ecosystem.config.js
// ecosystem.config.js
module.exports = {
apps : [{
name: "app",
script: "./app.js",
env: {
NODE_ENV: "development",
},
env_production: {
NODE_ENV: "production",
}
}]
}