无法使用本机代码创建项目

时间:2018-09-25 23:05:43

标签: react-native react-native-ios

我一直在搜索并且已经重新安装了node,react-native-cli和watchman。 我正在使用仿真器,设置为:

macOS High Sierra 10.13.6
react-native: 0.57.1
node v10.11.0
watchman 4.9.0

每次我使用以下项目创建项目:

react-native init [project_name]

我得到这个红色屏幕:

enter image description here

我已经尝试过:

This might be related to https://github.com/facebook/react-native/issues/4968
To resolve try the following:
  1. Clear watchman watches: `watchman watch-del-all`.
  2. Delete the `node_modules` folder: `rm -rf node_modules && npm install`.
  3. Reset Metro Bundler cache: `rm -rf /tmp/metro-bundler-cache-*` or `npm start -- --reset-cache`.
  4. Remove haste cache: `rm -rf /tmp/haste-map-react-native-packager-*`.
    at ModuleResolver.resolveDependency (/Users/ivofreitas/Projects/JavascriptWorkspace/react-native/YourProject/node_modules/metro/src/node-haste/DependencyGraph/ModuleResolution.js:209:1301)

试图使用早期版本的react进行创建,例如:

react-native init [YourProject] --version react-native@0.55.4

我再次完成了此https://facebook.github.io/react-native/docs/getting-started教程,但没有成功重新安装所有内容

1 个答案:

答案 0 :(得分:0)

我在github上找到了这篇文章

https://github.com/facebook/react-native/issues/21310

它可以通过以下方式解决问题:

npm add @babel/runtime
npm install

如链接中所述,它不应​​该那样工作。