
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
backbone-deep-model
Advanced tools
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.jsThen just have your models extend from Backbone.DeepModel instead of Backbone.Model.
Example code:
//Create models with nested attributes
var model = new Backbone.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', function(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'
Charles Davison - powmedia
0.11.0:
0.10.4:
0.10.0:
0.9.0:
0.8.0:
0.7.4:
0.7.3:
0.7.2:
0.7.1:
0.7:
FAQs
Improved support for models with nested attributes.
We found that 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.