Skip to content

v0.4.1

Compare
Choose a tag to compare
@zalmoxisus zalmoxisus released this 04 Aug 14:40
· 105 commits to master since this release

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.0
  const store = createStore(reducer, initialState, enhancer);
  // If you have other enhancers & middlewares
  // update the store after creating / changing to allow devTools to use them
  devTools.updateStore(store);
  return store;
}