1

我正在尝试重新安装本机反应。它工作正常,但是当我重新安装它时,它在构建 IOS 应用程序时显示了一些错误。

我安装了 react-native 使用

npm install -g react-native-cli

然后创建新项目

反应原生初始化 GM

成功了,现在版本如下

node --version
v8.11.2
npm --version
5.6.0
react-native --version
react-native-cli: 2.0.1
react-native: 0.55.4

然后我尝试了

react-native run-ios

它显示了错误

node_modules/@babel/core/lib/transformation/file/file.js:63   constructor(options, {
                       ^

SyntaxError: Unexpected token {
    at exports.runInThisContext (vm.js:53:16)
    at Module._compile (module.js:387:25)
    at Module._extensions..js (module.js:422:10)
    at Object.require.extensions.(anonymous function) [as .js] (/reactNative/GM/node_modules/babel-register/lib/node.js:152:7)
    at Module.load (module.js:357:32)
    at Function.Module._load (module.js:314:12)
    at Module.require (module.js:367:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/reactNative/GM/node_modules/@babel/core/lib/index.js:147:36)
    at Module._compile (module.js:413:34) Process terminated. Press <enter> to close the window

我遵循与ReactNative中提到的相同步骤

提前致谢

4

1 回答 1

4

升级 Node 和 NPM 为我解决了这个问题。

于 2018-06-05T13:08:43.573 回答