-
Notifications
You must be signed in to change notification settings - Fork 7.7k
React DevTools v4 blog post #2199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
89b3fb7
React DevTools v4 blog post
6f7fe08
Incorporated several bits of feedback from Dan and Rachel
d2b38d3
Updated release dates and supported RN version number
2813041
Updated links (to React repo) and addressed minor content nits
6fd6440
Added screenshot
bb8a4ee
Updated CHANGELOG link to include release date
c34f1c6
Linked to the tutorial
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
--- | ||
title: "Introducing the New React DevTools" | ||
author: [bvaughn] | ||
--- | ||
We are excited to announce a new release of the React Developer Tools, available today in Chrome, Firefox, and (Chromium) Edge! | ||
|
||
## What's changed? | ||
|
||
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. | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just one screenshot or a gif here, pretty please? I need to see what I'm gonna be using. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
 | ||
|
||
[Visit the interactive tutorial](https://react-devtools-tutorial.now.sh/) to try out the new version or [see the changelog](https://github.com/facebook/react/blob/master/packages/react-devtools/CHANGELOG.md#400-august-15-2019) for demo videos and more details. | ||
|
||
## Which versions of React are supported? | ||
|
||
**`react-dom`** | ||
|
||
* `0`-`14.x`: Not supported | ||
* `15.x`: Supported (except for the new component filters feature) | ||
* `16.x`: Supported | ||
|
||
**`react-native`** | ||
* `0`-`0.61`: Not supported | ||
* `0.62`: Supported | ||
|
||
## How do I get the new DevTools? | ||
|
||
React DevTools is available as an extension for [Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) and [Firefox](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/). | ||
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](https://www.npmjs.com/package/react-devtools): | ||
|
||
```shell | ||
npm install -g react-devtools@^4 | ||
``` | ||
|
||
## Where did all of the DOM elements go? | ||
|
||
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: | ||
|
||
 | ||
|
||
## How do I get the old version back? | ||
|
||
If you are working with React Native version 60 (or older) you can install the previous release of DevTools from NPM: | ||
|
||
```shell | ||
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: | ||
|
||
```shell | ||
# Checkout the extension source | ||
git clone https://github.com/facebook/react-devtools | ||
|
||
cd react-devtools | ||
|
||
# Install dependencies and build the unpacked extension | ||
yarn install | ||
yarn build:extension | ||
|
||
# Follow the on-screen instructions to complete installation | ||
``` | ||
|
||
## Thank you! | ||
|
||
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](https://github.com/facebook/react/issues/new?labels=Component:%20Developer%20Tools) or tag [@reactjs on Twitter](https://twitter.com/reactjs). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still feel like there should be at least one flagship feature here. Maybe add "This release also offers full support for React Hooks, including inspecting nested objects."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good