1.0.0 ā€¢ Published 6 years ago

novad-eventbus v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

novad-eventbus

šŸšŒ

installation

npm install novad-eventbus

usage

import bus from 'novad-eventbus'
// register:
bus.on('channel', () => {})

// emit
bus.emit('channel')

// remove specified function
bus.remove('channel',fn)

// remove all functiono in specified channel
bus.remove('channel')

// review all registed events
bus.list() //{a:[fn1, fn2...], channel1: [fn1, fn2...],...}

// clear all events
bus.clear()