使用CLI初始化react-native app时出现语法错误

时间:2017-02-23 13:30:28

标签: react-native react-native-cli

使用react-native init MyApp

初始化应用时出现以下语法错误
    SyntaxError: /Users/MyAccount/RNProjects/app/node_modules/react-native/packager/react-packager/src/node-haste/index.js: You can only use Class Properties when the 'classProperties' plugin is enabled. (389:2)
  387 |   }
  388 |
> 389 |   static Cache;
      |   ^
  390 |   static Module;
  391 |   static Polyfill;
  392 |   static getAssetDataFromName;
    at Parser.pp$5.raise (/Users/MyAccount/RNProjects/app/node_modules/babylon/lib/index.js:4380:13)

我不知道为什么会突然发生这种情况。之前一切正常。我想我在修补时错误地删除了一些配置文件。

2 个答案:

答案 0 :(得分:3)

<强>更新

他们已更新软件包,因此请删除节点模块并重新安装。 rm -rf node_modulesnpm install More info

我正在从getting started安装AwesomeProject。

$ rm -rf AwesomeProject/
$ react-native init AwesomeProject

它有效!

<强>原始

已提出问题:https://github.com/facebook/react-native/issues/12542

npm uninstall babylon && npm install babylon@6.15.0 或更新package.json文件以包含"babylon": "6.15.0"

答案 1 :(得分:0)

在我的情况下(在windows7上),没有安装python。安装Python2后,react-native init命令工作正常。