Sync redux state across browser tabs
A lightweight middleware to sync your redux state across browser tabs.
It will listen to the Broadcast Channel and dispatch the same actions dispatched in other tabs to keep the redux state in sync.
Please take note that BroadcastChannel can only send data that is supported by the structured clone algorithm (Strings, Objects, Arrays, Blobs, ArrayBuffer, Map),
so you need to make sure that the actions that you want to send to other tabs don't include any functions in the payload.`
Sync redux state across browser tabs A lightweight middleware to sync your redux state across browser tabs. It will listen to the Broadcast Channel and dispatch the same actions dispatched in other tabs to keep the redux state in sync.
Example
Before you use