Skip to main content

DevTools

Enhance your store's monitoring and debugging capabilities by leveraging the DevTools plugin in signalstory which integrates your store with the Redux DevTools browser extensions, enabling you to closely observe and analyze state changes.

This only works with the respective browser extension (Chrome, Edge and Firefox)

Enabling DevTools Integration

To activate the DevTools plugin, simply include it in your store's configuration. This automatically connects your store to Redux DevTools, allowing you to access advanced monitoring, time travel and other debugging features.

class StoreWithDevTools extends Store<MyState> {
constructor() {
super({
initialState: { ... },
name: 'My DevTools-Enabled Store',
plugins: [
useDevtools()
],
});
}
}