By Brian Vaughn·
We are excited to announce a new release of the React Developer Tools, available today in Chrome, Firefox, and (Chromium) Edge!
A lot has changed in version 4! At a high level, this new version should offer significant performance gains and an improved navigation experience. It also offers full support for React Hooks, including inspecting nested objects.
Visit the interactive tutorial to try out the new version or see the changelog for demo videos and more details.
react-dom
0
-14.x
: Not supported15.x
: Supported (except for the new component filters feature)16.x
: Supportedreact-native
0
-0.61.x
: Not supported0.62
: SupportedReact DevTools is available as an extension for Chrome and Firefox. If you have already installed the extension, it should update automatically within the next couple of hours.
If you use the standalone shell (e.g. in React Native or Safari), you can install the new version from NPM:
npm install -g react-devtools@^4
The new DevTools provides a way to filter components from the tree to make it easier to navigate deeply nested hierarchies.
Host nodes (e.g. HTML <div>
, React Native <View>
) are hidden by default, but this filter can be disabled:
If you are working with React Native version 60 (or older) you can install the previous release of DevTools from NPM:
npm install --dev react-devtools@^3
For older versions of React DOM (v0.14 or earlier) you will need to build the extension from source:
# Checkout the extension sourcegit clone https://github.com/facebook/react-devtoolscd react-devtools# Checkout the previous release branchgit checkout v3# Install dependencies and build the unpacked extensionyarn installyarn build:extension# Follow the on-screen instructions to complete installation
We’d like to thank everyone who tested the early release of DevTools version 4. Your feedback helped improve this initial release significantly.
We still have many exciting features planned and feedback is always welcome! Please feel free to open a GitHub issue or tag @reactjs on Twitter.