Redux DevTools
react-state-rxjs
integrates with Redux DevTools.
It is enabled by default but you can disable it for example in production by setting false to enableDevToolsOutput
under debugger
ReactState
.debugger(true, { enableDevToolsOutput: false })
.init((routerHistory: History) => {
hydrate(<Main history={routerHistory} />, document.getElementById("example"))
}, initialState, isProd);
If initial debugging is not started changes are reflected after invoking window.state.debug.start()
Remember that you can also track different parts of your state.
Demo

Last updated
Was this helpful?