There are two different variants of Redux DevTools:
- Redux DevTools: The official implementation of developer tools for Redux, implemented and maintained by Dan Abramov (the creator of Redux)
https://github.com/gaearon/redux-devtools - Redux DevTools Extension: A browser extension that implements the same developer tools for Redux
https://github.com/zalmoxisus/redux-devtools-extension
The main difference is that the first variant is integrated into your application and you can decide where to place the developer tools. For example, you can overlay a sidebar over your application. The second variant is a browser extension for Chrome and Firefox, which shows the developer tools in separate windows.
Both variants are compatible and offer various monitors that can be used to debug your application. For example, there is a LogMonitor to inspect the state and...