Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ampersand-collection-underscore-mixin
Advanced tools
A mixin for extending ampersand-collection with underscore methods.
A mixin for extending ampersand-collection with underscore methods.
As of v4.0.0
this is no longer mixed in to ampersand-rest-collection
. Instead it uses ampersand-collection-lodash-mixin
to match all other core module's move to using lodash. We no longer recommend using this module individually, and if you are we recommend converting to the lodash mixin.
npm install ampersand-collection-underscore-mixin
var Collection = require('ampersand-collection');
var underscoreMixin = require('ampersand-collection-underscore-mixin');
module.exports = Collection.extend(underscoreMixin, {
sampleMethod: function () {
// now we've got underscore methods
// we can call that are applied to models
// in the collection.
this.filter( ... );
this.some( ... );
this.each( ... )
}
});
All credit for underscore and this approach in backbone goes to Jeremy Ashkenas and the rest of the Backbone and Underscore authors.
If you like this follow @HenrikJoreteg on twitter.
MIT
FAQs
A mixin for extending ampersand-collection with underscore methods.
The npm package ampersand-collection-underscore-mixin receives a total of 24 weekly downloads. As such, ampersand-collection-underscore-mixin popularity was classified as not popular.
We found that ampersand-collection-underscore-mixin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.