nodemon 学习

nodemon是一个命令行工具,用于辅助项目开发

在Nodejs中,每次修改文件都要在命令行工具中重新执行改文件,非常繁琐。

使用步骤

1、使用npm install  nodemon -g 下载它

2、在命令行工具中用nodemon命令替代node命令执行文件

原文地址:https://www.cnblogs.com/chen-cheng/p/14298348.html