js-data-adapter
Base adapter class that all other js-data adapters extend.
Refer to the various js-data adapter repositories to see how they extend
Adapter
.
Table of contents
Quick Start
Browser-based adapter
npm i --save js-data
npm i --save-dev js-data-adapter
Node.js based adapter
npm i --save js-data js-data-adapter
Now extend the adapter:
class MyAdapter extends Adapter {}
var MyAdapter = Adapter.extend()
function MyAdapter (opts) {
Adapter.call(this, opts)
}
MyAdapter.prototype = Object.create(Adapter.prototype, {
constructor: {
value: MyAdapter,
enumerable: false,
writable: true,
configurable: true
}
})
Object.defineProperty(MyAdapter, '__super__', {
configurable: true,
value: Adapter
})
Explore the Community.
Support
Find out how to Get Support.
Contributing
Read the Contributing Guide.
License
The MIT License (MIT)
Copyright (c) 2016 js-data-adapter project authors