reqlite
reqlite copied to clipboard
Reqlite - RethinkDB in JavaScript
There's a TODO left there, where we don't check if the authentication message is valid. We just need to compute the client signature, the client key and check the hash....
Reqlite doesn't implement any user accounts at the moment. I'm not sure there's a use case for that, but I'm opening an issue to document it at least.
Query: ``` r.db(...).table(...).between(1, 10, {index: r.desc('foo')}) ``` Expected error: `DESC may only be used as an argument to ORDER_BY` Actual error: `Cannot order by index `foo` after calling BETWEEN on...
Rethinkdb is currently pretty strict about the places where `r.literal()` is allowed. See, for example, the discussions in rethinkdb/rethinkdb#4613, rethinkdb/rethinkdb#4428. Reqlite is much more generous, which may cause some queries...
Right now it doesn't seem like it's in NPM right now right? So I'm guessing we're supposed to just git clone it right?
See #36. Still not the complete list, but this adds support for: - resultFormat - timeout (needs test) - redirects (needs test) - header - params There are currently three...
Errors sent back by RethinkDB can contain a JSON value. `JSON.stringify(..., null, 4)` doesn't quite match their syntax. Their typically use tabs instead of spaces. If we have a matching...
Now only a simple GET is supported. Options to add: - [ ] timeout - [ ] reattempts - [ ] redirects - [ ] verify - [ ] resultFormat...