redux-devtools-filterable-log-monitor alternatives and similar libraries
Based on the "Redux" category.
Alternatively, view redux-devtools-filterable-log-monitor alternatives based on common mentions on social networks and blogs.
-
Reactime 6.0: State Debugger for React
Developer tool for time travel debugging and performance monitoring in React applications. -
Refract
DISCONTINUED. Harness the power of reactive programming to supercharge your components [GET https://api.github.com/repos/fanduel-oss/refract: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository] -
#<Sawyer::Resource:0x00007f8b44d36950>
基于React开发的新一代web调试工具,支持React组件调试,类似于Chrome Devtools。A Lightweight, Easy To Extend Web Debugging Tool Build With React -
react-redux-api-tools
A set of tools to facilitate react-redux development and decouple logic from compontents
Nutrient – The #1 PDF SDK Library, trusted by 10K+ developers

Do you think we are missing an alternative of redux-devtools-filterable-log-monitor or a related project?
Popular Comparisons
README
Filterable tree view monitor for Redux DevTools.
Actions are collapsed by default but they can be expanded by clicking on the action type. Strings and regular expressions can be used to filter actions by type as well as to filter the state tree by nodes or values.
Check out the demo application here.
Installation
npm install --save-dev redux-devtools-filterable-log-monitor
Usage
The FilterableLogMonitor
is intended for use within the DockMonitor
. You can configure your app to use these monitors like so:
import React from 'react'
import { createDevTools } from 'redux-devtools'
import DockMonitor from 'redux-devtools-dock-monitor'
import FilterableLogMonitor from '../src'
const DevTools = createDevTools(
<DockMonitor toggleVisibilityKey='ctrl-h'
changePositionKey='ctrl-q'>
<FilterableLogMonitor/>
</DockMonitor>
)
export default DevTools
Then you can render <DevTools>
to any place inside app or even into a separate popup window.
Read how to start using Redux DevTools.
Features
Every action is displayed in the log. Use the filter input to quickly and easily locate nodes in your store that are deeply nested. You can search using regular expressions or simple strings. Select whether the search should match keys, values, or either using the checkboxes above the filter input.
Contributions
Use GitHub issues for requests.
I actively welcome pull requests; learn how to contribute.
Changelog
Changes are tracked in the changelog.
License
react-virtualized is available under the MIT License.
*Note that all licence references and agreements mentioned in the redux-devtools-filterable-log-monitor README section above
are relevant to that project's source code only.