Skip to content

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

Notifications You must be signed in to change notification settings

hasangenc0/pubsub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages