Results 70 comments of Mike Mintz

Sorry I missed some of these messages. I was able to work around "Buffer is not defined" with ``` bash $ npm install buffer --save ``` ``` js global.Buffer =...

Other than adding hard-coding `true` in the rethinkdb-websocket-server/client code, here's some code I believe I was able to get working with android back on Feb 7: package.json ``` { "name":...

I was mimicking the API in [ParseReact](https://github.com/ParsePlatform/ParseReact) when I went with `this.data`. But I agree it doesn't feel the cleanest. It might be cleaner with higher order components like discussed...

This seems safe to merge, but I'm curious what the scenario is in which updateComponent gets called when a component doesn't use the mixin.

I mean, if a component isn't using the react-rethinkdb mixin, why would updateComponent be called?

That makes sense. But I'm also curious exactly what a React developer would have to do in order to reproduce this crash, since to me it seems like updateComponent wouldn't...

I think it will be great to have a HoC version that people can use as an alternative to the mixin. Would it be possible to refactor the PR so...

This is coming along great! I made a few more comments, but otherwise I think it's fine. We'll probably want to add or modify an [example](https://github.com/mikemintz/react-rethinkdb/tree/master/examples) to use ES6 classes,...

What's the reason to change console.log to console.warn? And any reason not to make the default callback use console.error, since it's logging an exception? Otherwise, looks good to me!

Is anyone else able to get queries with equalTo pointers to update? It's pretty suboptimal to have to always manually refresh queries after mutations. @andrewimm any ideas?