Capillaries 
Javascript Events and Hooks
Getting Started
Installation
Installation can be done via package managers such as npm or yarn
% npm install capillaries
% yarn add capillaries
Events
import { Events } from 'capillaries';
const event = new Events();
const listener = function (payload) {
console.log('Event Received:', payload);
};
event.on('connecting', listener);
event.on('connected', listener, this);
event.on('*', (type, payload) => {});
event.emit('connected', 'paylod');
const unsubscribe = event.on('connected', listener);
unsubscribe();
event.unbindAll('connected');
event.unbindAll();
AsyncEvents
import { AsyncEvents } from 'capillaries';
const event = new AsyncEvents();
const handler = async function (payload) {
console.log('Event Received:', payload);
};
event.on('connected', handler);
await event.call('connected', 'paylod');
const unsubscribe = event.on('connected', handler);
unsubscribe();
event.unbindAll();
Only one event handler can be attached per event. Attaching more than one event will throw an error.
Hooks
import { Hooks } from 'capillaries';
const hooks = new Hooks();
hooks.tap('Hook', () => {
return 'Hello World!';
});
hooks.tap('AsyncHook', async () => {
return 'Hello World!';
});
hooks.call('Hook', payload);
hooks.callWaterFall('Hook', payload);
hooks.callAsync('AsyncHook', payload);
hooks.callAsyncWaterFall('AsyncHook', payload);
hooks.clear();
Hooks are executed in order. The calling waterfall hook passes a return value from each function to the next function and returns data from the last tap
Browser compatibility
- Chrome 38+
- Edge 12+
- Firefox 13+
- Opera 25+
- Safari 8+
- Internet Explorer 11