有没有办法观察在节点js中运行的主js文件中的文件更改?

Is there a way to watch file changes in main js file runned in nodejs?

有一个 main.js javascript 文件和程序。

我运行它:

node --inspect-brk index.js

每次我更改此文件中的某些内容时,我都必须重新运行它。

我需要一些方法让 nodejs 知道这个 main.js 文件被更改并让 nodejs 重新运行 它。

有没有办法在 nodejs 运行ned 中查看主 js 文件中的文件更改?

您可以使用 nodemon。它会检测到您目录的任何更改并重新运行该应用程序。

npm install --save-dev nodemon
nodemon --inspect-brk index.js