microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
network-inspector-manager

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

resources/walkthougths/setup-env-common.md

10lines · modecode

1# React Native application
2
3Prepare 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
10You can verify that everything is working correctly and that the environment is ready for use with the `React Native: Run Doctor` in command palette.