You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
5.0 has been released with support for React 15. It contains other improvements to performance (such as calculating diff only when an action is expanded) and some cosmetic changes.
This project provides an alternate monitor for Redux DevTools. The primary goal of this monitor is to highlight the
changes to an application's state from action to action. This tool includes the main features from the default DevTools
monitor (rollback, commit, reset and individual action toggles).
Installation Examples
See the Redux Devtools documentation
for full details about how to use monitors.
Standalone Monitor
To use Diff Monitor by itself along with Redux Devtools, simply pass it to the createDevTools function directly.
Install from npm: npm install --save-dev redux-devtools redux-devtools-diff-monitor
New actions appear at the top of the monitor as they occur.
Actions will be minimized by default; actions shown in green are causing a state mutation.
Click an action name to expand its pane to view the state mutations the action caused.
Click "disable" next to any action name to ignore that action and roll back the state mutations that action caused.
As in the default Redux DevTools, click 'Commit' to reset the monitor and set the current app state as the rollback
point. If you click rollback after clicking commit, actions will be replayed through the commit point.