Popularity
2.5
Stable
Activity
0.0
Stable
155
6
10

Programming language: JavaScript
License: MIT License
Tags: Dev Tools     Redux     React     Flux     Devtools     Hot Reloading     Time Travel     Live Edit     Filter     Search     Searchable     Filterable    
Latest version: v0.8.1

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.

Do you think we are missing an alternative of redux-devtools-filterable-log-monitor or a related project?

Add another 'Redux' Library

README

NPM version NPM license NPM total downloads NPM monthly downloads

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.