急速模块图中不存在模块`@ babel / runtime / helpers / interopRequireDefault`

时间:2018-10-07 08:58:55

标签: android ios react-native npm-install

当我成功运行项目构建但打开应用程序并遇到此错误时,我开始学习如何响应本机操作

我必须运行我的react native样本项目,例如react-native init AwesomeProject

cd AwesomeProject

npm insatll

react-native run-android

  

并收到此错误错误:捆绑失败:错误:无法解决   来自的模块@babel/runtime/helpers/interopRequireDefault   /Users/macbookpro/AwesomeProject/index.js:模块   @babel/runtime/helpers/interopRequireDefault在   急速模块图`

在我完成此链接的所有本机设置之前

https://facebook.github.io/react-native/docs/getting-started.html

我正在使用macOS High Sierra 10.13.6

我将不胜感激!

1 个答案:

答案 0 :(得分:3)

可以通过使用

解决问题
npm add @babel/runtime
npm install

yarn add @babel/runtime

此问题目前仍悬而未决,有望在新版本中得到解决。 现在,您可以将babel / runtime保留在devDependencies中,但是如果要使用此版本的react-native构建发行版本,则需要将@ babel / runtime置于依赖项中。

这里是link,以获取更多详细信息