Redux Periscope: In-depth monitoring for Redux applications
- Click each state on the timeline to hop to it!
- Drag timeline slider to view your application at all times!
- Drag slider handles to change the viewable timeline range!
- View state and action details in depth!
- Group action events by type!
- Adjust the dock to hide the tools!
$ npm install redux-periscope --save-dev
Then, import as a normal react component and pass to [Redux Devtools] reduxdevtools
import { createDevTools } from 'redux-devtools';
import Periscope from 'redux-periscope';
let DevTools = createDevTools(
<Periscope />
);
ReactDOM.render(<Provider store={store}><App /><DevTools /></Provider>, getElementById('app'));
Navigate to examples/todomvc and run npm install -> npm start.
Many Thanks to [Dan Abramov] dan!