新建了一个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就可以啦 ^^