An open API service indexing awesome lists of open source software.

https://github.com/hasangenc0/pubsub

PubSub in 20 lines with Broadcast Channels. (It can be done using MessageChannel for better compatibility.)
https://github.com/hasangenc0/pubsub

broadcastchannel messagechannel pubsub web

Last synced: 9 months ago
JSON representation

PubSub in 20 lines with Broadcast Channels. (It can be done using MessageChannel for better compatibility.)

Awesome Lists containing this project

README

          

# pubsub
PubSub in 20 lines with Broadcast Channels

```
window.pubsub = new pubsub();

window.pubsub.subscribe("showAlert", (data) => {
alert(data.message);
});

window.pubsub.publish("showAlert", { message: "wazzup" });
```