ardcore / puf

tiny pubsub library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

puf - ultra-light pubsub module

usage:

// subscribe to channel
puf.subscribe('foo', function(a, b, c) {
  console.log(a + b + c);
})

// another subscriber
puf.subscribe('foo', function(a, b, c) {
  console.log(a - b - c);
})

// publish
puf.publish('foo', 1, 2, 3);

About

tiny pubsub library


Languages

Language:JavaScript 100.0%