nodemon是一种工具,可以在检测到目录中文件更改时自动重新启动应用程序,以此帮助我们开发基于nodeJs的应用程序。
nodemon,不要求我们的代码或者开发的方法做出任何变化。
安装
通过git克隆或使用npm(推荐哦):
npm install -g nodemon
简单使用
启动node服务:
nodemon app.js
查看使用帮助:
nodemon -h
若我的应用程序接收主机和端口作为参数:
nodemon app.js localhost:8099
延时重启,避免编辑器自动保存导致短时间内应用多次重启的情况:
nodemon -delay 10 app1.jsnodemon --delay 2.5 app2.jsnodemon --delay 2500ms app3.js
本文链接:https://my.lmcjl.com/post/1022.html
展开阅读全文
4 评论