Please note I have read the documentation and I'm referencing the point where the error happens as well as the steps I have taken. Please don't advice me to follow the instructions that I have already indicated I have followed.
After following the documentation of React Native to the best of my ability, I have been unable to get React Native to run. I have installed jdk, node, and Android Studio as instructed (using Chocolatey and links). The Android Emulator runs from Android Studio. I'm using npm version 6.1.0, node version 8.4.0, jdk 8, Android Studio 3.1.3. The error I get after react-native init AwesomeProject
is SyntaxError: Unexpected token import
. What did I do wrong? How can I fix this? Running react-native run-android
also gives the same error.
To be clear, I'm in the proper directory. ANDROID_HOME
is set to the proper sdk
folder. There is a heading, Running your React Native application
, and running the first command leaves me with the error, but I don't get an error before that point.
react-native run-android
without first cd-ing to you React Native project and you cannot have a have a React Native project until successfully runningreact-native init YourProjectName
. Since it sounds likeimport
is not defined, I would make sure your project is using Node version 8.4.0. What happens when you run node -v? – StilaAwesomeProject\node_modules\react-native\local-cli\cliEntry.js:30
, namely the lineimport type {CommandT} from './commands';
. – Incogitantnpm i
within the project's top-level directory then I was able to runnpm start
. I don't know if this is repeatable. After performing the same undocumented step, my project on my PC almost works. I'll check the firewall now. – Incogitant