Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
ak-eventemitter
Advanced tools
EventEmitter(options)
Constructor.
options
Object{
'delimiter': '.' // used to delimite name spaces
}
on(ns, callback[, context, once])
Adds an event listener.
ns
StringTarget namespace, wildcard is *
, e.g chat.*
callback
Functionfunction (ns, arg1, arg2, ...) {}
see emit()
.
context
Object [optional]Context used when calling callback.
once
Boolean
[optional]Privately used by once()
once(ns, callback, context)
Same as on()
, triggered only once (removed after first emit()
).
off([ns, callback, context])
Removes an event listener.
ns
String [optional]Target namespace, wildcard is *
, e.g chat.*
callback
Function [optional]function (ns, arg1, arg2, ...) {}
see emit()
.
context
Object [optional]Context used when calling callback.
ns
provided, removes all listeners;callback
provided, removes all listeners for given ns
;context
provided, remove a listener for given ns
and callback
;context
provided, removes a listener for given ns
, callback
and context
.emit(ns, ...)
Emits an event.
ns
String [optional]Target namespace.
...
Mixed [optional]Any argument given after ns
will be passed to listener's callback. See examples.
See this CoderWall tip.
var ee = new EventEmitter();
ee.on('someevent', function (ns, val1, val2) {
console.log(ns, val1, val2);
});
ee.emit('someevent', 123, 'abc'); // -> 'someevent', 123, 'abc'
var ee = new EventEmitter();
ee.on('room.*', function (ns, data) {
console.log(ns, data);
});
ee.emit('room.user.enter', 'john'); // -> 'room.user.enter', 'john'
ee.emit('room.user.leave', 'john'); // -> 'room.user.leave', 'john'
ee.emit('room.topic.update', 'JavaScript is awesome!'); // -> 'room.topic.update', 'JavaScript is awesome!'
var ee = new EventEmitter();
ee.on('room.*', function (ns, data) {
console.log(ns, data);
});
ee.once('room.user.enter', function (ns, user) {
console.log('Hello ' + user + '! You\'re the first in!');
});
ee.emit('room.user.enter', 'john');
// -> 'room.user.enter', 'john'
// -> 'Hello john! You're the first in!'
ee.off('room.*');
ee.emit('room.user.leave', 'john'); // Nothing is logged (because we offed 'room.*')
var ee = new EventEmitter();
var counter = {
'enter': 0,
'leave': 0
};
ee.on('room.user.enter', function (ns) {
this.enter += 1;
}, counter);
ee.on('room.user.leave', function (ns) {
this.leave += 1;
}, counter);
ee.emit('room.user.enter', 'john');
ee.emit('room.user.leave', 'mary');
ee.emit('room.user.enter', 'george');
ee.emit('room.user.enter', 'paul');
console.log(counter); // -> {'enter': 3, 'leave': 1}
FAQs
eventemitter with namespaces
The npm package ak-eventemitter receives a total of 0 weekly downloads. As such, ak-eventemitter popularity was classified as not popular.
We found that ak-eventemitter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.