Skip to content

zorbyte/pubsub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PubSub for Deno

A simple PubSub module for deno.

Example

import { PubSub } from "https://deno.land/x/pubsub/mod.ts";

class Test {
  public x = "sfg";
}

const m = new PubSub();

m.subscribe(Test, t => {
  console.log(t);
});

m.publish(new Test());

License

Licensed under the MIT License, checkout the LICENSE for more information.