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.
ampersand-wildemitter-datatype-mixin
Advanced tools
A mixin for linking WildEmitter objects with Ampersand-State so that they can be bound by Ampersand-View.
Requires that the WildEmitter object emits events with this format:
emitter.emit('change:PROPERTY', emitter, 'VALUE');
It must also make the PROPERTY
value an accessible attribute in
order for things like view bindings to work:
emitter.foo = 'new-foo';
emitter.emit('change:foo', emitter, emitter.foo);
$ npm install ampersand-wildemitter-datatype-mixin
var State = require('ampersand-state');
var WildEmitterMixin = require('ampersand-wildemitter-datatype-mixin');
var StateWithWildEmitter = State.extend(wildemitterMixin, {
props: {
wild: 'wildemitter',
},
derived: {
bar: {
deps: ['wild.foo'],
cache: false,
fn: function () {
return 'it works!';
}
}
}
});
var ex = new StateWithWildEmitter();
ex.wild = new WildEmitter();
ex.on('change:bar', function () {
console.log(ex.bar);
});
ex.wild.emit('change:foo', ex.wild, 'newfoo');
// -> it works!
MIT
FAQs
WildEmitter datatype for Ampersand state
The npm package ampersand-wildemitter-datatype-mixin receives a total of 1 weekly downloads. As such, ampersand-wildemitter-datatype-mixin popularity was classified as not popular.
We found that ampersand-wildemitter-datatype-mixin 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.