1.0.2 • Published 6 years ago

zp-event v1.0.2

Weekly downloads
3
License
ISC
Repository
-
Last release
6 years ago

知乎招聘消息总线

安装

npm install zp-bus --save
yarn add zp-bus

使用方法

import { EventBus } from 'zp-bus'

const bus = new EventBus()

// 注册集合处理器
function test_handler(e, context) {
  console.log(e.type)  // test/a
  console.log(e.value) // 1
}

bus.registerCollectionHandler('test', test_handler)

bus.dispatch({
  type : 'test/a',
  value : 1
})