Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
ampersand-mixins
Advanced tools
Use Ampersand-mixins to mix multiple mixins into a single Ampersand object. Ampersand-mixins merges all Ampersand specific properties such as props, events, bindings, etc.
Use Ampersand-mixins to mix multiple mixins into a single Ampersand object. Ampersand-mixins merges all Ampersand specific properties such as props, events, bindings, etc.
Ampersand provides an extend function for most of its modules. It offers functionality like automatic props merging and etc.
One of the shortcomings of this approach is that it allows to extend only one object. Ampersand.extend also allows for mixins but it doesn't merge any of their properties. This is where Ampersand-mixins comes to help.
npm install ampersand-mixins
var mixins = require('ampersand-mixins');
var SomeView = View.extend({
props: {
foo: 'string',
},
events: {
'click button': 'clickButton',
},
);
var mixin1 = {
props: {
bar: 'boolean',
},
events: {
'click a': 'clickAnchor',
},
clickButton: function () {}
};
var mixin2 = {
props: {
foobar: 'state',
},
clickAnchor: function () {}
};
mixins(SomeView, [mixin1, mixin2]);
An array of function names that define functions that will be called on each mixin (and the base object) separately. Useful for binding mixin specific listeners in the initialize function. Also works with the render function or any other custom functions. Only invokes functions that exist and doesn't fail if the base object or any of the mixins don't share the same functions.
var mixins = require('ampersand-mixins');
var BaseView = View.extend({
initialize: function () { console.log('base'); }
);
var mixin1 = {
initialize: function () { console.log('mixin1'); }
};
var mixin2 = {
initialize: function () { console.log('mixin2'); }
};
mixins(BaseView, [mixin1, mixin2], {
invoke: ['initialize']
});
var base = new BaseView();
/* Prints out:
* base
* mixin1
* mixin2
*/
FAQs
Use Ampersand-mixins to mix multiple mixins into a single Ampersand object. Ampersand-mixins merges all Ampersand specific properties such as props, events, bindings, etc.
The npm package ampersand-mixins receives a total of 2 weekly downloads. As such, ampersand-mixins popularity was classified as not popular.
We found that ampersand-mixins 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.