microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
prepare-for-1.13.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

resources/walkthougths/debug-tutor.md

16lines · modecode

1# Run and Debug your React Native application
2## Create and run debugging scenario
3This extension supports generating debugging configuration in the `.vscode/launch.json` file by selecting debugging parameters in dropdown lists at the top of the editor.
4
5![Add React Native debug configuration](../images/add-debug-configuration.gif)
6
7To start debugging, just choose the appropriate configuration in the Configuration dropdown, and then press F5 (or click _Green Arrow_ ![Configure-gear](../images/debug-icon.png) button) to start debugging your app in VS Code.
8
9The extension also allows to start debugging without creating the `launch.json` file in one of the following ways:
10- Using dynamic debugging configurations
11
12 ![Run dynamic debugging configuration](../images/dynamic-debugging-configuration.gif)
13- Using Debug button in the Editor Title area menu
14
15 ![Select and run debugging command](../images/debug-commands-button.png)
16
17