Dart RethinkDB Driver
A Dart driver for RethinkDB v2.3.
Getting Started:
The driver api tries to align with the javascript and python RethinkDB drivers. You can read their documentation here.
to include this driver in your own project add the package to your pubspec.yaml file:
dependencies:
rethinkdb_driver: '^2.3.2+2'
or to use bleeding edge:
dependencies:
rethinkdb_driver:
git: git://github.com/billysometimes/rethinkdb.git
or if you are a developer:
dependencies:
rethinkdb_driver:
path: /path/to/your/cloned/rethinkdb_driver
then import the package into your project:
import 'package:rethinkdb_driver/rethinkdb_driver.dart';
to run tests execute the following command from the project root:
warning: tests are run against a live database, but they do attempt to clean up after themselves
pub run test