
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@victorenator/backbone-deep-model
Advanced tools
NOTE: I no longer have time to maintain this module. Please see the forks list for actively maintained projects, such as https://github.com/kahwee/backbone-deep-model
Improved support for models with nested attributes.
Allows you to get and set nested attributes with path syntax, e.g. user.type
.
Triggers change events for changes on nested attributes.
Backbone >= 0.9.10
distribution/deep-model.min.js
Then just have your models extend from Backbone.DeepModel instead of Backbone.Model.
Example code:
import {DeepModel} from 'backbone-deep-model';
// Create models with nested attributes
const model = new DeepModel({
id: 123,
user: {
type: 'Spy',
name: {
first: 'Sterling',
last: 'Archer'
}
},
otherSpies: [
{ name: 'Lana' },
{ name: 'Cyrril' }
]
});
// You can bind to change events on nested attributes
model.bind('change:user.name.first', (model, val) => {
console.log(val);
});
// Wildcards are supported
model.bind('change:user.*', function() {});
// Use set with a path name for nested attributes
// NOTE you must you quotation marks around the key name when using a path
model.set({
'user.name.first': 'Lana',
'user.name.last': 'Kang'
});
// Use get() with path names so you can create getters later
console.log(model.get('user.type')); // 'Spy'
// You can use index notation to fetch from arrays
console.log(model.get('otherSpies.0.name')) //'Lana'
FAQs
Improved support for models with nested attributes.
The npm package @victorenator/backbone-deep-model receives a total of 1 weekly downloads. As such, @victorenator/backbone-deep-model popularity was classified as not popular.
We found that @victorenator/backbone-deep-model 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.