“永远“守护进程知道我是否更新了我的 Node.js 脚本吗?
如果永久守护进程在后台积极运行,我可以安全地更改我的 Node.js 脚本吗?
答案1
这不是一个明确的答案(我不知道)而只是一个提示,你检查过watch
设置吗?
来自README
github:
//
// Options for restarting on watched files.
//
'watch': false // Value indicating if we should watch files.
'watchIgnoreDotFiles': null // Dot files we should read to ignore ('.foreverignore', etc).
'watchIgnorePatterns': null // Ignore patterns to use when watching files.
'watchDirectory': null // Top-level directory to watch from.
编辑:所以,从这些选项猜测,它可能确实“缓存”了脚本,即它读取一次源代码 - 除非你告诉它手表来源。