
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
ember-annotative-models
Advanced tools
Introduces the concept of fields to models and allows for extremely annotative models
automatically registers fields based upon the models you have declared in your routes
Annotate your models like so:
`import {Importance, about, action} from 'ember-annotative-models'`
`import DS from 'ember-data'`
Friend = DS.Model.extend
username: DS.attr "string",
label: "User Name"
description: "The unique gamer handle on the Playstation Now Network"
display: ["show", "index"]
modify: ["new"]
priority: Importance.Important
currentlyPlaying: DS.attr "string",
label: "Currently Playing"
description: "The video game this friend is playing at this moment"
display: ["show", "index"]
modify: ["edit"]
priority: Importance.Important
`export default Friend`
Access field via the store
this.store.fieldsFor "friend"
ember-concurrency
ember-autox-core
ember-lodash
Because actions use es6 generators, be sure to include that in the polyfill
var EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
module.exports = function(defaults) {
var app = new EmberAddon(defaults, {
babel: { includePolyfill: true }
});
return app.toTree();
};
git clone this repositorynpm installbower installember servernpm test (Runs ember try:testall to test your addon against multiple Ember versions)ember testember test --serverember buildFor more information on using ember-cli, visit http://ember-cli.com/.
FAQs
The default blueprint for ember-cli addons.
The npm package ember-annotative-models receives a total of 1 weekly downloads. As such, ember-annotative-models popularity was classified as not popular.
We found that ember-annotative-models 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.