I\'m having trouble getting the React Native Getting Started project to run.
I followed this guide: https://facebook.github.io/react-native/docs/getting-started.html<
Had this same problem. I had a ~/.babelrc that was mucking everything up. I tried everything I could find
~/.babelrc
rm -rf node_modules
npm cache clean
npm install
Finally... the solution for me was:
sudo lsof -n -i4TCP:8081 then kill the process and rerun react-native run-ios
sudo lsof -n -i4TCP:8081
react-native run-ios