remote-redux-devtools v0.4.1 Release Notes

Release Date: 2016-08-04 // over 7 years ago
  • ➕ Added updateStore method, which you can use in case you have other enhancer / middlewares. So, when remote dispatching, they will be applied.

    Usage:

    import { createStore, applyMiddleware, compose } from 'redux';import thunk from 'redux-thunk';import devTools from 'remote-redux-devtools';import reducer from '../reducers';export default function configureStore(initialState) { const enhancer = compose( applyMiddleware(thunk), devTools() ); // Note: passing enhancer as last argument requires redux@\>=3.1.0const store = createStore(reducer, initialState, enhancer); // If you have other enhancers & middlewares// update the store after creating / changing to allow devTools to use themdevTools.updateStore(store); return store; }