About

This is a simple solution for an Ember app that utilizes resources following the JSON API 1.0 specification. It operates on the idea that the objects in the app (resource/model, adapter, serializer, services) simply follow the spec.

URL's are first class in the JSON API 1.0 specification and first class in the Ember.js Router. Why not make them first class in your persistence solution too?

The JSON API specification defines relationships including links objects that providing URLs for related and self, making your API server discoverable.

This implementation takes the posture that your application's resources do not need a complex abstraction but a simple implemenation of a solid specification. So, this project is great for getting started with using the JSON API spec in your Ember.js app.

Also, managing a distributed cache requires flexibility. When a client application receives a representation of a resource from a server, the client should be able to expire that cached object (in the browser application) based on the response headers; or by whatever means the developer chooses.

Requirements

This data persistence solution for an Ember.js application is a simple approach; however, there are a few things you'll need to understand in order to get up and running.

Other Ember.js JSON API Implementations