ember-data-endpoints

The default blueprint for ember-cli addons.

Usage no npm install needed!

<script type="module">
  import emberDataEndpoints from 'https://cdn.skypack.dev/ember-data-endpoints';
</script>

README

Ember-data-endpoints

An ember-data adapter for endpoints APIs.

Usage

Install ember-data-endpoints:

  • npm install --save-dev ember-data-endpoints
  • Extend your application adapter from the endpoints adapter, e.g.:
// app/adapters/application.js

import EndpointsAdapter from "ember-data-endpoints/adapter";
import config from '../config/environment';
export default EndpointsAdapter.extend({
  host: 'http://api.loc',
  headers: {
    'Authorization': 'Bearer ' + config.APP.access_token
  }
});
  • Optionally, extend your application serializer from the Endpoints serializer. By default the Endpoints Adapter will automatically load the EndpointsSerializer unless you provide an ApplicationSerializer or model specific Serializer:
// app/serializers/application.js

import EndpointsSerializer from "ember-data-endpoints/serializer";
export default EndpointsSerializer.extend({
  //...
});

Sideloading

Endpoints will sideload relationships using in a jsonapi compliant manner if you have include=relationshipName as a query parameter in your url. The EndpointsAdapter will automatically add this query parameter to request URLs for all non asycn relationships.

Running Tests

  • ember test
  • ember test --server