redux-promise-middleware-times
v1.0.1
Published
Record the time consumed by each asynchronous action
Downloads
14
Maintainers
Readme
redux-promise-middleware-times
Record the time consumed by each asynchronous action, asynchronous solutions that rely on redux-promise-middleware.
Usage
import { createStore, applyMiddleware } from 'redux';
import thunk from 'redux-thunk';
import promiseMiddleware from 'redux-promise-middleware';
import logTimes from 'redux-promise-middleware-times';
const store = createStore(thunk, promiseMiddleware(), logTimes());