Releases: zalmoxisus/remote-redux-devtools
Releases · zalmoxisus/remote-redux-devtools
v0.3.0
Remote monitoring in production
Use Remote Redux DevTools to monitor your web, React Native or hybrid apps not only in development, but also in production now!
Start or stop monitoring by using specific actions (for example SOME_ACTION_ERROR
).
It implies that for production you'll host remotedev-server
on your side.
The configuration will be like:
export default function configureStore(initialState) {
return createStore(
rootReducer,
initialState,
devTools({
name: 'Android app', realtime: false,
hostname: 'your-host.com', port: 8000,
startOn: 'SOME_ACTION_ERROR' // or array: ['LOGIN_ERROR', 'LOGOUT_ERROR']
})
);
}
For development
If you have process.env.NODE_ENV === 'development'
, just use devTools()
as before and all the changes will be monitored. Otherwise set realtime
option to true
(devTools({ realtime: true })
), but make sure to have it in the development only.
v0.2.2
v0.2.1
Support importing state history. Export / import from a file is implemented on [email protected]
.
v0.2.0
v0.1.8
v0.1.7
v0.1.6
v0.1.5
- Fixed filtering monitor actions
v0.1.4
v0.1.2
- Set default hostname if port is set.
- Remove direct redux dependency and encourage to use new redux API.
- Update dependencies to fix some issues in
socketcluster
andredux-devtools
.