2015-07-14 22:46:44 +03:00
Redux DevTools
=========================
2015-08-20 16:41:03 +03:00
A live-editing time travel environment for [Redux ](https://github.com/rackt/redux ).
2015-08-12 14:49:31 +03:00
**[See Dan's React Europe talk demoing it!](http://youtube.com/watch?v=xsSnOQynTHs)**
2015-07-15 00:45:02 +03:00
2015-09-24 17:58:42 +03:00
[![build status ](https://img.shields.io/travis/gaearon/redux-devtools/master.svg?style=flat-square )](https://travis-ci.org/gaearon/redux-devtools)
[![npm version ](https://img.shields.io/npm/v/redux-devtools.svg?style=flat-square )](https://www.npmjs.com/package/redux-devtools)
[![npm downloads ](https://img.shields.io/npm/dm/redux-devtools.svg?style=flat-square )](https://www.npmjs.com/package/redux-devtools)
[![redux channel on slack ](https://img.shields.io/badge/slack-redux@reactiflux-61DAFB.svg?style=flat-square )](http://www.reactiflux.com)
2015-08-12 16:30:49 +03:00
![](http://i.imgur.com/J4GeW0M.gif)
2015-08-12 14:49:31 +03:00
### Features
* Lets you inspect every state and action payload
* Lets you go back in time by “cancelling” actions
* If you change the reducer code, each “staged” action will be re-evaluted
* If the reducers throw, you will see during which action this happened, and what the error was
* With `persistState()` store enhancer, you can persist debug sessions across page reloads
2015-08-28 19:28:07 +03:00
* Toggle visibility with Ctrl+H
2015-07-15 01:05:08 +03:00
2015-07-15 00:45:02 +03:00
### Installation
2015-08-10 18:54:25 +03:00
```
npm install --save-dev redux-devtools
```
2015-07-15 00:45:02 +03:00
2015-08-23 14:17:33 +03:00
DevTools is a [store enhancer ](http://rackt.github.io/redux/docs/Glossary.html#store-enhancer ), which should be added to your middleware stack *after* [`applyMiddleware` ](http://rackt.github.io/redux/docs/api/applyMiddleware.html ) as `applyMiddleware` is potentially asynchronous. Otherwise, DevTools won’ t see the raw actions emitted by asynchronous middleware such as [redux-promise ](https://github.com/acdlite/redux-promise ) or [redux-thunk ](https://github.com/gaearon/redux-thunk ).
2015-08-21 02:24:46 +03:00
2015-08-23 14:17:33 +03:00
To install, firstly import `devTools` into your root React component:
```js
// Redux utility functions
import { compose, createStore, applyMiddleware } from 'redux';
2015-09-24 20:35:33 +03:00
2015-08-23 14:17:33 +03:00
// Redux DevTools store enhancers
2015-08-21 02:24:46 +03:00
import { devTools, persistState } from 'redux-devtools';
2015-09-24 20:35:33 +03:00
// A monitor component for Redux DevTools
import LogMonitor from 'redux-devtools-log-monitor';
2015-08-21 02:24:46 +03:00
```
2015-08-23 14:17:33 +03:00
Then, add `devTools` to your store enhancers, and create your store:
```js
2015-08-21 02:24:46 +03:00
const finalCreateStore = compose(
2015-08-23 14:17:33 +03:00
// Enables your middleware:
2015-09-12 16:53:58 +03:00
applyMiddleware(m1, m2, m3), // any Redux middleware, e.g. redux-thunk
2015-09-24 20:35:33 +03:00
2015-08-23 14:17:33 +03:00
// Provides support for DevTools:
2015-08-21 02:24:46 +03:00
devTools(),
2015-09-24 20:35:33 +03:00
2015-08-23 14:17:33 +03:00
// Lets you write ?debug_session=< name > in address bar to persist debug sessions
2015-09-01 04:40:45 +03:00
persistState(window.location.href.match(/[?& ]debug_session=([^& ]+)\b/))
)(createStore);
2015-08-21 02:24:46 +03:00
const store = finalCreateStore(reducer);
```
2015-09-24 20:35:33 +03:00
Finally, include the `DevTools` in your page. You may pass either `LogMonitor` (the default one) or any of the custom monitors described below.
2015-08-23 14:17:33 +03:00
```js
export default class Root extends Component {
2015-08-21 02:24:46 +03:00
render() {
return (
< div >
< Provider store = {store} >
2015-09-24 20:35:33 +03:00
< CounterApp / >
2015-08-21 02:24:46 +03:00
< / Provider >
2015-09-24 20:35:33 +03:00
< LogMonitor store = {store.devToolsStore} / >
2015-08-21 02:24:46 +03:00
< / div >
);
}
}
```
2015-09-01 04:40:45 +03:00
**Make sure to only apply `devTools()` in development!** In production, this will be terribly slow because actions just accumulate forever. (We'll need to implement a rolling window for dev too.)
2015-07-15 00:15:04 +03:00
2015-09-01 04:40:45 +03:00
For example, in Webpack, you can use `DefinePlugin` to turn magic constants like `__DEV__` into `true` or `false` depending on the environment, and import and render `redux-devtools` conditionally behind `if (__DEV__)` . Then, if you have an Uglify step before production, Uglify will eliminate dead `if (false)` branches with `redux-devtools` imports. Here is [an example ](https://github.com/erikras/react-redux-universal-hot-example/ ) that adds Redux DevTools handling the production case correctly.
2015-07-15 02:20:37 +03:00
2015-07-15 00:32:47 +03:00
### Running Examples
2015-07-15 00:45:02 +03:00
You can do this:
2015-07-15 00:15:04 +03:00
```
git clone https://github.com/gaearon/redux-devtools.git
cd redux-devtools
npm install
cd examples/counter
npm install
npm start
open http://localhost:3000
```
2015-07-15 00:20:04 +03:00
Try clicking on actions in the log, or changing some code inside `examples/counter/reducers/counter` .
2015-07-15 00:15:04 +03:00
For fun, you can also open `http://localhost:3000/?debug_session=123` , click around, and then refresh.
2015-07-15 00:26:06 +03:00
2015-07-28 20:55:49 +03:00
Oh, and you can do the same with the TodoMVC example as well.
2015-08-12 14:49:31 +03:00
### Custom Monitors
2015-07-15 00:32:47 +03:00
2015-07-15 00:59:35 +03:00
**You can build a completely custom UI for it** because `<DevTools>` accepts a `monitor` React component prop. The included `LogMonitor` is just an example.
2015-08-12 14:49:31 +03:00
**[I challenge you to build a custom monitor for Redux DevTools!](https://github.com/gaearon/redux-devtools/issues/3)**
2015-07-15 00:45:02 +03:00
Some crazy ideas for custom monitors:
* A slider that lets you jump between computed states just by dragging it
* An in-app layer that shows the last N states right in the app (e.g. for animation)
* A time machine like interface where the last N states of your app reside on different Z layers
* Feel free to come up with and implement your own! Check `LogMonitor` propTypes to see what you can do.
2015-08-12 14:49:31 +03:00
In fact some of these are implemented already:
#### [redux-devtools-diff-monitor](https://github.com/whetstone/redux-devtools-diff-monitor)
![](http://i.imgur.com/rvCR9OQ.png)
#### [redux-slider-monitor](https://github.com/calesce/redux-slider-monitor)
![](https://camo.githubusercontent.com/d61984306d27d5e0739efc2d57c56ba7aed7996c/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f662e636c2e6c792f6974656d732f3269314c3147316e3161316833793161324f31772f53637265656e2532305265636f7264696e67253230323031352d30382d3034253230617425323030372e3435253230504d2e676966)
#### [redux-devtools-gentest-plugin](https://github.com/lapanoid/redux-devtools-gentest-plugin)
![](https://camo.githubusercontent.com/71452cc55bc2ac2016dc05e4b6207c5777028a67/687474703a2f2f646c312e6a6f78692e6e65742f64726976652f303031302f333937372f3639323130352f3135303731362f643235343637613236362e706e67)
#### Keep them coming!
Create a PR to add your custom monitor.
2015-07-15 00:59:35 +03:00
2015-07-15 00:45:02 +03:00
### License
MIT