nodemon

内容纲要

简介

官网:https://nodemon.io/
文档:https://github.com/remy/nodemon#nodemon

Nodemon is a utility depended on about 3 million projects, that will monitor for any changes in your source and automatically restart your server. Perfect for development.

Nodemon是一个依赖于大约300万个项目的实用程序,它将监视源代码中的任何更改,并自动重启服务器。完美的开发。

Swap nodemon instead of node to run your code, and now your process will automatically restart when your code changes. To install, get Node.js, then from your terminal run:
使用nodemon而不是node来运行代码,现在当你的代码更改时,进程将自动重新启动。要安装,获取Node.js,然后从你的终端运行:

npm install -g nodemon

特性

  • 自动重新启动应用程序。
  • 检测要监视的默认文件扩展名。
  • 默认支持节点,但容易运行任何可执行文件,如python, ruby, make等。
  • 忽略特定的文件或目录。
  • 监视具体的目录。
  • 使用服务器应用程序或一次性运行实用程序和REPLs。
  • 可脚本通过节点要求语句。
  • 开源的,可以在github上找到。

Leave a Comment

您的电子邮箱地址不会被公开。 必填项已用*标注

close
arrow_upward