Results 70 comments of Mike Mintz

@babakness, I'm using the latest master, and I don't think I'm seeing the same behavior as you. I.e. I clone this project from git, run `npm install` and `npm run...

I'm using node 6.5.0 on linux, but I have also gotten it working on node 0.12, node 4, and node 5. Does your dist/node.js file also have ES6, or is...

@jvorcak This library is currently intended to provide the same API as the official rethinkdb javascript driver, identical except using a websocket instead of a TCP socket. For something higher...

You're right, this won't work on browsers without WebSocket, like IE9 and old android devices. I think @tjmehta is working on adding support or a fork that will allow alternative...

@GeoffreyPlitt I think that change might break other cases, like if `data` is a base64 encoded string, like is checked on line 66. Can you describe why this check needs...

@GeoffreyPlitt, if you're still having issues using react-native and rethinkdb-websocket-client, you can post on the related issue https://github.com/mikemintz/react-rethinkdb/issues/11. It appears to be working on both android and iOS. I don't...

@motebotic That seems like a reasonable solution. Is that something you can use easily in your own project without requiring changes in `react-rethinkdb`? If you have to go through any...

That seems pretty cool! Maybe since it seems like `isMounted()` might get deprecated anyway, we should first patch the mixin so it sets `_isMounted` in `componentDidMount` and `componentWillUnmount`, and then...

@birkir does the decorator functionality work for you now that https://github.com/mikemintz/react-rethinkdb/pull/31 is merged? Maybe we could add your decorator code as well if you're ok with that, so that other...

Take a look at https://github.com/mikemintz/rethinkdb-websocket-client it has an example in the README and a tutorial explaining how to use it without react. On Thu, Oct 19, 2017 at 12:39 AM...