React dev tools unavailable
See original GitHub issuePrerequisites
- Using yarn
- Using an up-to-date
masterbranch - Using latest version of devtools. Check the docs for how to update
- Tried solutions mentioned in #400
- For issue in production release, add devtools output of
DEBUG_PROD=true yarn build && yarn start
Expected Behavior
The React tab should be available under the Chrome Developer Tool window.
Current Behavior
React tab is not available. I can see Redux dev tools only.
Steps to Reproduce
I have a standard configuration:
const installExtensions = async () => {
const installer = require('electron-devtools-installer');
const forceDownload = !!process.env.UPGRADE_EXTENSIONS;
const extensions = ['REACT_DEVELOPER_TOOLS', 'REDUX_DEVTOOLS'];
return Promise.all(
extensions.map((name) => installer.default(installer[name], forceDownload))
).catch(console.log);
};
Possible Solution (Not obligatory)
Context
I would like to investigate a component state.
Your Environment
- Node version : v12.14.0
- electron-react-boilerplate version or branch : 1.3.0
- Operating System and version : macOS Catalina 10.15.5 (19F101)
- Link to your project :
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
React Developer Tool Is not working in my localhost ... - GitHub
Yes, it does have that feature. I think my suggestion to anyone facing this problem now is to simply use react-devtools from the...
Read more >react dev tools not loading in Chrome browser - Stack Overflow
I'm debugging an application which uses React.js, the Chrome Extensions list clearly shows that the React Developer Tools are installed, ...
Read more >React devtools extension not working on my application - Reddit
Hi all, ever since Chrome latest update (99), the react devtools extension does not work anymore on my application. It detects React correctly ......
Read more >react-devtools - npm
Use react-devtools outside of the browser. Latest version: 4.27.1, last published: 19 days ago. Start using react-devtools in your project ...
Read more >Developer tools - React Navigation
Developer tools to make debugging easier when using React Navigation.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I have the same issue on Windows 10 with a clean clone - unzip was throwing an exception. looked into it and appears that the extension .crx file was empty due to a change on Google’s end. same issue as described by https://github.com/MarshallOfSound/electron-devtools-installer/pull/140. This was fixed in 3.1.1 - I bumped up the version and ‘seems’ like it fixed the issue (didn’t run any tests other than it doesn’t throw the exception anymore and extension tabs show up now)
Try running
UPGRADE_EXTENSIONS=1 yarn run dev