Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 229 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 229 Bytes

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" });