Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
base-events
Advanced tools
Provides easy way to subscribe and emit events. Super light component
Provides easy way to subscribe and emit events. Super light component
npm install --save base-events
import BaseEvents from 'base-events';
const events = new BaseEvents();
events.on('a.b.c', () => {
console.log('a.b.c fired');
});
events.once('x.y.z', () => {
console.log('x.y.z fired');
});
events.emit('a.b.c');
events.emit('x.y.z');
events.emit('x.y.z'); // will not emit x.y.z for second time
const off = events.on('a', () => {
// ....
});
off(); // unsubscribe listener
import BaseEvents from 'base-events';
class Manager extends BaseEvents {
constructor() {
super();
}
add(component) {
// ...
this.emit('component.add', {
component
});
}
}
const manager = new Manager();
manager.on('component.add', ({ component }) => {
// ....
});
on(event, callback)
- subscribe for event. Returns unsubscribe functiononce(event, callback)
- subscribe for event. Will be emitted only one timeemit(event, arguments)
- trigger event with provided argumentsYou are always welcome for ideas and pull requests :)
const events = new BaseEvents();
events.on('a', () => { ... });
events.on('a.*', () => { ... });
events.on('a.b.c', () => { ... });
events.on('a.*.c', () => { ... });
events.emit('a', params); // available listeners: a
events.emit('a.b.c', params); // available listeners: a.* / a.b.c / a.*.c
events.emit('a.B.c', params); // available listeners: a.*.c
events.emit('x.y.z', params); // no listeners
events.emit('a', params); // available listeners: a
FAQs
Provides easy way to subscribe and emit events. Super light component
The npm package base-events receives a total of 562 weekly downloads. As such, base-events popularity was classified as not popular.
We found that base-events demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.