ice-redux-devtools
v0.1.1
Published
Redux DevTools Extension add-on that handles serialization of ZeroC Ice stuff
Readme
Ice Redux DevTools 
Handles serialization of ZeroC Ice stuff for
Redux DevTools Extension.
Transparently converts Ice object instances to plain JS objects before sending
them to DevTools. On time travel converts them back to actual instances before
they end up in application code. Supports long, enum, struct, dictionary,
exception and class.
Installation
$ npm install ice-redux-devtoolsUsage
import {composeWithDevTools} from 'redux-devtools-extension';
import {enhancerOptions} from 'ice-redux-devtools';
const composeEnhancers = composeWithDevTools(enhancerOptions);
const store = createStore(reducer, /* preloadedState, */ composeEnhancers(
applyMiddleware(...middleware),
// other store enhancers if any
));