rethinkdb-websocket-client
rethinkdb-websocket-client copied to clipboard
RethinkDB driver monkey-patched to connect via WebSocket. Works in browser.
Using rethinkdb-websocket-client and rethinkdb-websocket-server with whitelist query feature is fetching me wrong data on the frontend. The query I am executing is simply ``` r.table('tableName'); ``` its getting allowed via...
Support changefeeds ?
Port 80
For a while I have been trying to figure out how to proxy through nginx on port 80 for the websockets port. Some networks don't allow a webpage to use...
https://github.com/mikemintz/rethinkdb-websocket-server/issues/19 specifies a bug with JSON parsing. It turns this is not a bug with the server, but with the rethinkdb-websocket-client. Patch is provided at original issue. Best, Ingar
`npm run prepublish` doesn't produce the same `index.js` in `dist` that one gets from `npm install rethinkdb-webdocket-client`. The version of `dist/index.js` via `npm install` is in es5, the one produced...
I was browsing your code and noticed that you don't have any support for browsers that don't support websockets. So my assumption would be that [this line](https://github.com/mikemintz/rethinkdb-websocket-client/blob/master/src/TcpPolyfill.js#L39) would fail since...
Hi, I'd like to ask, how can I solve reconnecting issue using this library. Or should I do connect every time I want to make a call? That doesn't really...
When I implemented `simulatedLatencyMs` using `setTimeout`, I assumed that multiple calls to `setTimeout` with the same interval would have the callbacks executed in the same order that the timeouts were...