2019-08-14 13:15:38 +08:00
|
|
|
This is the source code for the React DevTools browser extension.
|
2019-05-09 03:53:22 +08:00
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
|
2019-08-14 13:15:38 +08:00
|
|
|
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/)
|
2019-05-09 03:53:22 +08:00
|
|
|
|
2019-08-14 13:15:38 +08:00
|
|
|
# Build
|
2019-01-23 03:07:56 +08:00
|
|
|
|
2019-08-14 13:15:38 +08:00
|
|
|
You can also build and install from source:
|
|
|
|
|
```sh
|
2019-01-23 03:07:56 +08:00
|
|
|
yarn install
|
2019-05-09 03:53:22 +08:00
|
|
|
|
2019-08-15 00:24:35 +08:00
|
|
|
yarn build:chrome # builds at "packages/react-devtools-extensions/chrome/build"
|
|
|
|
|
yarn build:firefox # builds at "packages/react-devtools-extensions/firefox/build"
|
2019-02-17 01:46:10 +08:00
|
|
|
```
|