![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
cocktail-annotation-evented
Advanced tools
This extension defines a custom annotation to apply Eventable Trait and creates the required glue code into the host class.
npm install cocktail --save
npm install cocktail-annotation-evented --save
CocktailJS v0.5.0 or greater is required to use this annotation.
Using @evented
annotation is quite easy. First we need to register the custom annotation with current cocktail instance.
MyClass.js
var cocktail = require('cocktail'),
Evented = require('cocktail-annotation-evented');
//register Evented annotation with current cocktail instance
cocktail.use(Evented);
cocktail.mix({
'@exports': module
'@as' : 'class',
// we can say that our class is evented by passing `true` as a param
'@evented': true,
doSomething: function(){
this.emit('doingSomething', this);
}
});
index.js
var MyClass = require('./MyClass'),
obj;
obj = new MyClass();
obj.on('doingSomething', function(){console.log('obj is doing something!');});
obj.doSomething();
@evented: parameter
true
, the evented annotation will create and add a new instance of node's events.EventEmitter
.FAQs
CocktailJS Custom Annotation Evented
The npm package cocktail-annotation-evented receives a total of 0 weekly downloads. As such, cocktail-annotation-evented popularity was classified as not popular.
We found that cocktail-annotation-evented 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.