js-data-rethinkdb
RethinkDB adapter for js-data.
To get started, visit http://js-data.io.
Table of contents
- Quick start
- Example App
- Guides and Tutorials
- API Reference Docs
- Community
- Support
- Contributing
- License
Quick Start
npm install --save js-data js-data-rethinkdb
.
import {Container} from 'js-data'
import RethinkDBAdapter from 'js-data-rethinkdb'
const store = new Container()
const adapter = new RethinkDBAdapter()
// "store" will now use the RethinkDB adapter for all async operations
store.registerAdapter('rethinkdb', adapter, { default: true });
store.defineMapper('user');
Example App
js-data-examples/server/rethinkdb
Guides and Tutorials
Get started at http://js-data.io
API Reference Docs
Community
Support
Contributing
License
The MIT License (MIT)
Copyright (c) 2014-2016 js-data-rethinkdb project authors