An open API service indexing awesome lists of open source software.

https://github.com/threepointone/reachout

rethinkdb + js-csp
https://github.com/threepointone/reachout

Last synced: 3 months ago
JSON representation

rethinkdb + js-csp

Awesome Lists containing this project

README

        

(alpha)

reachout
---
dahi + rethinkdb

`npm install reachout`

```js
// the basics

go(function*(){
var connection = yield connect(r, db);
var cursor = yield run(r.db('mydb').table('mytable'), connection);
var records = yield toArray(cursor)
log(records);
})

// works with changes()!

```

(re: error handling - follow [this issue](https://github.com/ubolonton/js-csp/issues/14))