@piotr-cz/redux-broadcast-middleware

1.0.3 • Public • Published

Redux crosstab broadcast channel middleware

Lightweight Redux middleware to sync state across browser tabs/ windows with same origin (browsing context) using BroadcastChannel.

When BroadcastChannel interface isn't available (at the moment only Chrome 54+ or Firefox 38+ are supported) middleware is opaque - does nothing. For list of polyfills is see this Web fundamentals article.

Installation

npm install --save @piotr-cz/redux-broadcast-middleware

or

yarn add @piotr-cz/redux-broadcast-middleware

Setup

Import the middleware and include it in applyMiddleware when creating Redux store:

// configureStore.js

import reduxBroadcastMiddleware from '@piotr-cz/redux-broadcast-middleware'

//...

const store = createStore(
  rootReducer,
  applyMiddleware(
    reduxBroadcastMiddleware(
      'state-channel',
      ['DO_NOT_SYNC_THIS_ACTION']
    )
  )
)

Options

  • {string} Channel name - Used for broadcasting and listening to
  • {Array} Blacklist - Array of additional actions that should be ignored

Notes

Similar projects

Package Sidebar

Install

npm i @piotr-cz/redux-broadcast-middleware

Weekly Downloads

1

Version

1.0.3

License

MIT

Unpacked Size

16.9 kB

Total Files

11

Last publish

Collaborators

  • piotr-cz