使用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)
我不知道为什么会突然发生这种情况。之前一切正常。我想我在修补时错误地删除了一些配置文件。
答案 0 :(得分:3)
<强>更新强>
他们已更新软件包,因此请删除节点模块并重新安装。 rm -rf node_modules
和npm 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命令工作正常。