Use Redux DevTools remotely for React Native, hybrid, desktop and server side Redux apps.
npm install --save-dev remote-redux-devtools
Just add our store enhancer to your store:
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 finalCreateStore = compose(
applyMiddleware(thunk),
devTools()
)(createStore);
const store = finalCreateStore(reducer, initialState);
return store;
}
Use one of our monitor apps to inspect and redo actions:
- web
- chrome app (recommended)
- electron app.
The source code is here.
- Use it only for development, NOT in production!
- The app and the monitor should be under the same external IP address.
- For now it supports only one instance simultaneously.
- For web apps it's easier and way faster to use Chrome extension instead. The remote monitoring is meant to be used for React Native, hybrid, desktop and server side apps.
MIT