This project was bootstrapped with Create React Native App.
Below you'll find information about performing common tasks.
- Requirements
- Updating Create React Native App and React Native
- Available Scripts
- Writing and Running Tests
- Tips and Tricks
- Node.js v6 (preferably using nvm)
- Yarn
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.
Installs the dependencies as specified in package.json according to the locked versions in yarn.lock.
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.
Runs the jest test runner on your tests.
Runs the jest test runner on your tests in watch mode.
Like yarn start
, but also attempts to open your app in the iOS Simulator if you're on a Mac and have it installed.
Like yarn 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).
Formats all JavaScript code with prettier.
Runs the flow static type checker on your JavaScript code. The flow documentation contains guides on how to integrate flow into your editor.
This project is set up to use jest for tests. Files with suffix .test.js
will be loaded by jest. The jest documentation is also a wonderful resource, as is the React Native testing tutorial.
- If you have a local network the prevents your phone from accessing the address that is printed when running the packager, you can often work around this issue by "tethering" your computer to your phone's internet connection. Some phones call this feature "mobile hotspot." While it's very convenient, if you have a data plan where you pay for data transfer you should be careful when using this feature, especially when installing dependencies from NPM.