
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.
@particle/ember-data-fixture-adapter
Advanced tools
This addon contains the FixtureAdapter from Ember Data. The FixtureAdapter lets you find, store, modify, and delete records using an in-memory store.
The FixtureAdapter was removed from Ember Data core in May 2015 due to the lack of an interested maintainer and overall bugginess. We recommend you switch to using an AJAX stubbing library like Pretender.
This addon is currently not maintained by the Ember Data team. However, we will be happy to merge documentation fixes.
You can use it as an addon using ember install ember-data-fixture-adapter.
If you are using it in globals mode, you can use Ember Giftwrap to build it for your application.
You can define a FIXTURES array on your model with some data you would
like available by default:
import DS from 'ember-data';
var Post = DS.Model.extend({
title: DS.attr()
});
Post.reopenClass({
FIXTURES: [
{
id: 1,
title: "Something something Basecamp"
}
]
});
export default Post;
Then, in your tests, set your app's application adapter to the FixtureAdapter:
// app/adapters/application.js
export { default } from 'ember-data-fixture-adapter';
git clone this repositorynpm installbower installember serverember testember test --serverember buildFor more information on using ember-cli, visit http://www.ember-cli.com/.
FAQs
The default blueprint for ember-cli addons.
The npm package @particle/ember-data-fixture-adapter receives a total of 0 weekly downloads. As such, @particle/ember-data-fixture-adapter popularity was classified as not popular.
We found that @particle/ember-data-fixture-adapter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 29 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.

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.