mirror of
https://github.com/facebook/react.git
synced 2026-02-25 13:13:03 +00:00
18 lines
598 B
Markdown
18 lines
598 B
Markdown
This is the source code for the React DevTools browser extension.
|
|
|
|
# Installation
|
|
|
|
The easiest way to install this extension is as a browser add-on:
|
|
* [Chrome web store](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
|
|
* [Firefox Add-ons](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)
|
|
|
|
# Build
|
|
|
|
You can also build and install from source:
|
|
```sh
|
|
yarn install
|
|
|
|
yarn build:chrome # builds at "packages/react-devtools-extensions/chrome/build"
|
|
yarn build:firefox # builds at "packages/react-devtools-extensions/firefox/build"
|
|
```
|