retracer
v0.0.1
Published
reTracer it is a redux middleware that allows you to have a view on the state of your application and the actions that are dispatched, and this presented in a simple way to understand without extention
Downloads
16
Readme
ReTracer
reTracer it is a redux middleware that allows you to have a view on the state of your application and the actions that are dispatched, and this presented in a simple way to understand without extention
Installation
import ReTracer from 'redux-tracer';Usage
const reTracer = new ReTracer();
const store = createStore(rootReducer, initialState, applyMiddleware(reTracer.start));