我试着为React.js应用程序编写测试.一切都很顺利但是在用Git跟踪目录之后(用它做了一个Git回购).测试失败,出现以下错误
2017-01-15 05:05 node[1278] (FSEvents.framework) FSEventStreamStart: register_with_server: ERROR: f2d_register_rpc() => (null) (-22)
2017-01-15 05:05 node[1278] (FSEvents.framework) FSEventStreamStart: register_with_server: ERROR: f2d_register_rpc() => (null) (-22)
events.js:160
throw er; // Unhandled 'error' event
^
Error: Error watching file for changes: EMFILE
at exports._errnoException (util.js:1022:11)
at FSEvent.FSWatcher._handle.onchange (fs.js:1406:11)
我确信这是因为.git
目录,因为当我删除.git
目录时它正在运行而没有错误.似乎在观看文件时发生异常.我的开发环境是MacOS 10.12.2和节点6.9.4.我该如何解决这个问题?
哦,经过数小时的努力,我将回答我的问题.
最好的解决方案是安装最新版本的Watchman.
旧版本的Watchman导致fsevents
模块抛出异常.
安装后watchman
,您可以选择运行sudo chown -R $(whoami):staff ~/Library/LaunchAgents
以授予权限.