Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在开发过程中一直使用我的 node.js 站点,以便它在特定代码更改时重新启动站点。永远识别文件已更改并且需要重新启动有点慢。我怎样才能让它更快地检测到呢?
顺便说一句,node-supervisor 的工作速度要快得多,但由于不同的原因我不能使用它。
为了使其更快,请尝试减少“永远”必须监视的文件数量。
创建一个名为 .foreverignores 的文件,它类似于 .gitignore 里面 .foreverignores 添加所有你可以特别忽略的文件夹
node_modules/
另一种解决方案是只看一个文件,例如
forever -w app.js app.js
这取决于您的需求。