When using the redux-devtools-extension
in my web app's codebase, I'm able to debug Redux actions and state changes in the browser.
If I run Node.js with --inspect
and debug in Chrome, I expect to see the same behavior, but I only see the message:
No store found. Make sure to follow the instructions.
How can I use Redux DevTools when doing Node.js development with --inspect
?