是否有一种稳定的方法来检查 node.js 中的文件更改?我已经尝试过 default fs.watch
,但它非常有问题。
fs.watch(__dirname, function(event, filename){
console.log(event + ' file ' + filename);
})
这会记录一次更改 3 次。每个人都报告了不同操作系统下的许多错误。
节点 v0.8.21,Ubuntu 12.10
是否有一种稳定的方法来检查 node.js 中的文件更改?我已经尝试过 default fs.watch
,但它非常有问题。
fs.watch(__dirname, function(event, filename){
console.log(event + ' file ' + filename);
})
这会记录一次更改 3 次。每个人都报告了不同操作系统下的许多错误。
节点 v0.8.21,Ubuntu 12.10