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));