https://github.com/threepointone/reachout
rethinkdb + js-csp
https://github.com/threepointone/reachout
Last synced: 3 months ago
JSON representation
rethinkdb + js-csp
- Host: GitHub
- URL: https://github.com/threepointone/reachout
- Owner: threepointone
- Created: 2015-04-30T10:08:33.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-04T13:08:37.000Z (about 10 years ago)
- Last Synced: 2025-01-25T08:11:37.411Z (5 months ago)
- Language: JavaScript
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
(alpha)
reachout
---
dahi + rethinkdb`npm install reachout`
```js
// the basicsgo(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))