Skip to content

Commit

Permalink
Update README.md to have example usage
Browse files Browse the repository at this point in the history
  • Loading branch information
maxlindbergh authored Sep 25, 2024
1 parent d65681b commit 05d4ca5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ enables developers working on React Native apps to debug their code more efficie

This repository is a fork of [ChromeDevTools/devtools-frontend](https://github.com/ChromeDevTools/devtools-frontend).

##Example usage
After building the project, you can use the React Native Debugger frontend to inspect and debug your React Native app. First, serve the built files
locally using:

```sh
python3 -m http.server 8000 --directory out/Default/gen/front_end
```
Then, open your browser and navigate to http://localhost:8000/inspector.html for general debugging, or http://localhost:8000/rn_inspector.html for
React Native-specific debugging. This allows you to inspect UI components, monitor network requests, and analyze performance metrics directly in
your browser using Chrome DevTools.

## Development

### Initial setup
Expand Down

0 comments on commit 05d4ca5

Please sign in to comment.