Giter VIP home page Giter VIP logo

bs-broadcast-channel's Introduction

bs-broadcast-channel

ReasonML bindings for Broadcast Channel

NPM

Install

npm

npm i --save bs-broadcast-channel

yarn

yarn add bs-broadcast-channel

After installing, add it to the dependencies

bsconfig.json

{
  "bs-dependencies": [
    "bs-broadcast-channel",
  ],
}

Usage

open BsBroadcastChannel;

/**
 * Create a channel
 */

let channel = BroadcastChannel.make("My app");

/**
 * Listen to messages
 */
channel->BroadcastChannel.addEventListener("message", (data: MessageEvent.t) => {
  /**
   *  get our data
   */
  Js.log(data->MessageEvent.data);
});

/**
 * Post message
 */
channel->BroadcastChannel.postMessage("Hello World");

/**
 * Close our channel
 */
channel->BroadcastChannel.close();

License

MIT © lxsmnsyc

bs-broadcast-channel's People

Contributors

lxsmnsyc avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

bs-broadcast-channel's Issues

[Fixed] rendering on Safari bug

Just an FYI. I have no idea what this means and don't need it. Feel free to close.

I ran your example and made some edits to see test it in the ui.

This is firefox:
Screenshot 2020-01-11 at 1 26 49 PM

This is Safari:

Screenshot 2020-01-11 at 1 27 52 PM

Environment:

➜  example macenv
ProductName:	Mac OS X
ProductVersion:	10.15.2
BuildVersion:	19C57
yarn version: 1.21.1
node version: v13.3.0

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.