![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.