React Native starter project bundling fails with Unexpected Token error

前端之家收集整理的这篇文章主要介绍了React Native starter project bundling fails with Unexpected Token error前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

新建了一个react-native 项目

react-native init Demo
cd Demo
react-native run-android

按照顺序run的时候发现Android模拟器屏幕上显示服务器返回500的response,终端错误标题所示:
React Native starter project bundling fails with Unexpected Token error
参考链接
https://stackoverflow.com/questions/45725376/react-native-starter-project-bundling-fails-with-unexpected-token-error
主要是babel-preset-react-native3.0.0的一些bug,先在package.json中将该行改为
"babel-preset-react-native": "2.1.0",
在终端

rm -rf node_modules
npm install

之后再run就可以啦 ^^

原文链接:https://www.f2er.com/react/303107.html

猜你在找的React相关文章