我想从OS X 10.12中的facebook / react-native / Examples中运行示例。

首先,我使用npm install,然后使用npm start:

发生错误:

Error watching file for changes: EMFILE
{"code":"EMFILE","errno":"EMFILE","syscall":"Error watching file for changes:","filename":null}
Error: Error watching file for changes: EMFILE
    at exports._errnoException (util.js:1008:11)
    at FSEvent.FSWatcher._handle.onchange (fs.js:1406:11)

然后我使用Xcode运行代码,但是存在相同的错误。

我需要帮助或建议。非常感谢。

最佳答案

react-native-cli取决于watchman,您可以尝试使用brew install watchman安装watchman,然后再尝试一次。

09-12 23:54