Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 637 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 637 Bytes

broadcast-channel-polyfill

A simple BroadcastChannel polyfill that works with all major browsers. Please refer to the official MDN documentation of the Broadcast Channel API.

See Broadcast Channel API on MDN.

For more info, see the related article on Medium.

Webpack usage

.... 
plugins: [
    new ProvidePlugin({
        BroadcastChannel: '@alexis89x/broadcast-channel/lib/index.js'
    })]

``