chkt / yaes

yet another event system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

yaes

Yet another event system

Install

$ npm install yaes

Use

import * as yaes from 'yaes';


class Class extends yaes.Dispatcher { ... }

const data = { ... };


Class
	.addListener('type', e => { ... })
	.dispatch(new yaes.Dispatchable('type',data));

About

yet another event system


Languages

Language:JavaScript 100.0%