This is new for me so not able to recognised how to install react native setup in windows. I saw lot of tutorials on google but not find the easiest one so if anyone have it . Please give the suggestions for this.
- 5 years ago
Please run these commands in the project folder and fill in their results:
npm ls react-native-scripts
: react-native-scripts@0.0.50npm ls react-native
: react-native@0.45.1npm ls expo
: expo@18.0.9node -v
: v6.9.2npm -v
: 4.6.1yarn --version
: Not installedwatchman version
: "version": "4.7.0"
npm install -g create-react-native-app create-react-native-app my-app
You should only need to update the global installation of create-react-native-app
very rarely, ideally never.
Updating the react-native-scripts
dependency of your app should be as simple as bumping the version number in package.json
and reinstalling your project's dependencies.
Upgrading to a new version of React Native requires updating the react-native
, react
, and expo
package versions, and setting the correct sdkVersion
in app.json
. See the versioning guide for up-to-date information about package version compatibility.
If Yarn was installed when the project was initialized, then dependencies will have been installed via Yarn, and you should probably use it to run these commands as well. Unlike dependency installation, command running syntax is identical for Yarn and NPM at the time of this writing.
npm start
Runs your app in development mode.
Open it in the Expo app on your phone to view it. It will reload if you save edits to your files, and you will see build errors and logs in the terminal.
Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the --reset-cache
flag to the start script:
npm start --reset-cache
# or
yarn start --reset-cache
npm test
Runs the jest test runner on your tests.
npm run ios
Like npm start
, but also attempts to open your app in the iOS Simulator if you're on a Mac and have it installed.
npm run android
Like npm start
, but also attempts to open your app on a connected Android device or emulator. Requires an installation of Android build tools (see React Native docs for detailed setup). We also recommend installing Genymotion as your Android emulator. Once you've finished setting up the native build environment, there are two options for making the right copy of adb
available to Create React Native App:
Using Android Studio's adb
Settings -> ADB
Select “Use custom Android SDK tools” and update with your Android SDK directory.Using Genymotion's adb
/Applications/Genymotion.app/Contents/MacOS/tools/
.npm run eject
This will start the process of "ejecting" from Create React Native App's build scripts. You'll be asked a couple of questions about how you'd like to build your project.
Warning: Running eject is a permanent action (aside from whatever version control system you use). An ejected app will require you to have an Xcode and/or Android Studio environment set up.
Hot Questions