js-data-rethinkdb 2.2.0

js-data logo

js-data-rethinkdb

Slack Status npm version Circle CI npm downloads Coverage Status Codacy

RethinkDB adapter for js-data.

To get started, visit http://js-data.io.

Table of contents

Quick Start

npm install --save js-data js-data-rethinkdb.

var JSData = require('js-data');
var RethinkDBAdapter = require('js-data-rethinkdb');

var store = new JSData.DS();
var adapter = new RethinkDBAdapter();

// "store" will now use the RethinkDB adapter for all async operations
store.registerAdapter('rethinkdb', adapter, { default: true });

var User = store.defineResource({
  name: 'user'
});

Example App

js-data-examples/server/rethinkdb

Guides and Tutorials

Get started at http://js-data.io

API Reference Docs

Visit http://api.js-data.io.

Community

Explore the Community.

Support

Find out how to Get Support.

Contributing

Read the Contributing Guide.

License

The MIT License (MIT)

Copyright (c) 2014-2016 js-data-rethinkdb project authors