Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bvaughn/redux-devtools-filterable-log-monitor

Filterable tree view monitor for Redux DevTools
https://github.com/bvaughn/redux-devtools-filterable-log-monitor

Last synced: 27 days ago
JSON representation

Filterable tree view monitor for Redux DevTools

Awesome Lists containing this project

README

        

redux devtools filterable log monitor logo
=========================

![NPM version](https://img.shields.io/npm/v/redux-devtools-filterable-log-monitor.svg)
![NPM license](https://img.shields.io/npm/l/redux-devtools-filterable-log-monitor.svg)
![NPM total downloads](https://img.shields.io/npm/dt/redux-devtools-filterable-log-monitor.svg)
![NPM monthly downloads](https://img.shields.io/npm/dm/redux-devtools-filterable-log-monitor.svg)

Filterable tree view monitor for [Redux DevTools](https://github.com/gaearon/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](https://bvaughn.github.io/redux-devtools-filterable-log-monitor).

Demo GIF

Installation
------------

```
npm install --save-dev redux-devtools-filterable-log-monitor
```

Usage
------------

The `FilterableLogMonitor` is intended for use within the [`DockMonitor`](https://github.com/gaearon/redux-devtools-dock-monitor). You can configure your app to use these monitors like so:

```js
import React from 'react'
import { createDevTools } from 'redux-devtools'
import DockMonitor from 'redux-devtools-dock-monitor'
import FilterableLogMonitor from '../src'

const DevTools = createDevTools(



)

export default DevTools

```

Then you can render `` to any place inside app or even into a separate popup window.

[Read how to start using Redux DevTools.](https://github.com/gaearon/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](https://github.com/bvaughn/redux-devtools-filterable-log-monitor/issues) for requests.

I actively welcome pull requests; learn how to [contribute](https://github.com/bvaughn/react-virtualized/blob/master/CONTRIBUTING.md).

Changelog
---------

Changes are tracked in the [changelog](https://github.com/bvaughn/redux-devtools-filterable-log-monitor/blob/master/CHANGELOG.md).

License
---------

*react-virtualized* is available under the MIT License.