A Chrome DevTools Extension, wrapping around Redux DevTools:
The Redux DevTools themselves are a live-editing time travel environment for Redux:
- Lets you inspect every state and action payload
- Lets you go back in time by “cancelling” actions
- If you change the reducer code, each “staged” action will be re-evaluated
- If the reducers throw, you will see during which action this happened, and what the error was
- With
persistState()
store enhancer, you can persist debug sessions across page reloads
Redux DevTools →
Redux DevTools Chrome Extension (Source) →
Redux DevTools Chrome Extension (Chrome Web Store) →