使用nodemon提高nodejs调试效率

Posted sexintercourse

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用nodemon提高nodejs调试效率相关的知识,希望对你有一定的参考价值。

 

1、安装

nodemon

直接用npm安装既可,键入命令: npm -g install nodemon

。如果不行,检查电脑有没有联网,联网后输入

sudo npm -g install nodemon

2、nodemon的使用

用cd命令定位到项目的根目录

输入以下的命令

nodemon bin/www

 

请注意:这里无需npm start 命令

change directory:
$ cd blogs

install dependencies:
$ npm install

run the app:
$ DEBUG=blogs:* npm start

大功告成

以上是关于使用nodemon提高nodejs调试效率的主要内容,如果未能解决你的问题,请参考以下文章

如何在 nodeJs 中使用 nodemon 调试应用程序

nodejs开发辅助工具nodemon

如何将参数传递给 nodemon(或 node-supervisor)中的可执行文件?

Node 工具 nodemon 详解

nodejs 模块恩仇录

nodejs_nodemon