Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bvaughn/redux-devtools-filterable-log-monitor
- Owner: bvaughn
- License: mit
- Created: 2015-12-21T06:17:35.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-10T21:42:38.000Z (about 6 years ago)
- Last Synced: 2024-11-07T09:43:12.034Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://bvaughn.github.io/redux-devtools-filterable-log-monitor/
- Size: 7.32 MB
- Stars: 153
- Watchers: 6
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-react-components-all - redux-devtools-filterable-log-monitor - Filterable tree view monitor for Redux DevTools. (Uncategorized / Uncategorized)
- awesome-react-components - redux-devtools-filterable-log-monitor - Filterable tree view monitor for Redux DevTools. (Dev Tools / Redux)
- awesome-list - redux-devtools-filterable-log-monitor - Filterable tree view monitor for Redux DevTools. (Dev Tools / Redux)
- awesome-react-components - redux-devtools-filterable-log-monitor - Filterable tree view monitor for Redux DevTools. (Dev Tools / Redux)
- awesome-react-components - redux-devtools-filterable-log-monitor - Filterable tree view monitor for Redux DevTools. (Dev Tools / Redux)
- awesome-react-components - redux-devtools-filterable-log-monitor - Filterable tree view monitor for Redux DevTools. (Dev Tools / Redux)
- fucking-awesome-react-components - redux-devtools-filterable-log-monitor - Filterable tree view monitor for Redux DevTools. (Dev Tools / Redux)
- awesome-redux - redux-devtools-filterable-log-monitor - Filterable tree view monitor for Redux DevTools. (Dev tools / Inspection tools / Side Effects)
README
=========================![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).
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.