There are many other monitors out there, developed by the Redux community. Here is a short list of what else is out there:
- DiffMonitor: This is similar to the LogMonitor, but specifically shows changes in the store state. You can refer to https://github.com/whetstone/redux-devtools-diff-monitor for more information.
- FilterableLogMonitor: This is similar to the LogMonitor, but allows filtering actions with a search field. Plain text and regex search are supported. You can refer to https://github.com/bvaughn/redux-devtools-filterable-log-monitor/ for more information.
- FilterMonitor: This is not a monitor, but a monitor container (like the DockMonitor). It allows you to filter out certain actions before they reach other monitors. ...