goatslacker / transmitter

A tiny pub sub library that just subscribes and publishes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

transmitter

Dead simple pub-sub

API

subscribe(onChange: () => any): { dispose: () => void }

Subscribes to change events. Returns an object which contains the method dispose which removes the current subscription.

publish(...payload: any): void

Emit a change to all the subscribers.

Example

const bus = transmitter()

bus.subscribe(result => console.log(result))

bus.publish({ foo: 'bar' })

License

MIT

About

A tiny pub sub library that just subscribes and publishes


Languages

Language:JavaScript 100.0%