microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
remove-unused-debugging-code

Branches

Tags

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

Clone

HTTPS

Download ZIP

resources/walkthougths/setup-env-common.md

10lines · modeblame

28b3cf0cEzio Li1 years ago1# React Native application
19590a3fJiglioNero4 years ago2
28b3cf0cEzio Li1 years ago3Prepare 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.
19590a3fJiglioNero4 years ago4
28b3cf0cEzio Li1 years ago5- 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`.
19590a3fJiglioNero4 years ago9
28b3cf0cEzio Li1 years ago10You can verify that everything is working correctly and that the environment is ready for use with the `React Native: Run Doctor` in command palette.