microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
resources/walkthougths/setup-env-common.md
10lines · modecode
| 1 | # React Native application |
| 2 | |
| 3 | Prepare your environment by following the [React native Quickstart instruction](https://reactnative.dev/docs/environment-setup). You can create your app using 3rd party framework like Expo or create app without framework. |
| 4 | |
| 5 | - Ensure install react-native using: `npm i -g react-native`. |
| 6 | - Create new project without framework using: `npx @react-native-community/cli@latest init`. |
| 7 | - Start metro using: `npm start`. |
| 8 | - Build and launch app using" `npm run android`. |
| 9 | |
| 10 | You can verify that everything is working correctly and that the environment is ready for use with the `React Native: Run Doctor` in command palette. |