1.0.3 • Published 4 years ago

eventbus-typescript v1.0.3

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

EventBusJS

Nodejs 事件总线

Installation

npm install eventbus-typescript

Usage

import {on, off, emit} from './eventbus-typescript';

// Subscribe
on('eventName', 'id-1', () => {/* do something */});

// Unsubscribe
off('eventName', 'id-1');

// Publish
emit('eventName', 'payload');