Skip to content

billysometimes/rethinkdb

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Build Status

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