nodemon all in one
nodemon all in one
https://github.com/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
https://github.com/Unitech/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",
}
}]
}
refs
https://www.cnblogs.com/xgqfrms/p/13621076.html
https://www.cnblogs.com/xgqfrms/tag/nodemon/
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/13747600.html
未经授权禁止转载,违者必究!