Jorge Silva
Jorge Silva
I've been trying to get the `AppRTCMobile` example to run on MacOS (there's a version meant to run on macOS) and, after getting it to compile, started running into this...
``` [2015-12-11T08:01:38.248Z] INFO: rethinkdb-proxy/13779 on Jorges-MacBook-Pro.local: Data received buffer: e{"t":2,"r":[{"age":26,"id":"157d94aa-4baa-4098-9dee-53987b098683","name":"jorge"},{"id":"1"}],"n":[]} ```
``` root@8a027b4008b6: node /rethinkdb-proxy/index.js /rethinkdb-proxy/lib/buffer-parser.js:35 if (Buffer.byteLength(this[_queue_]) >= 4) { ^ TypeError: Argument must be a string at BufferParser.append (/rethinkdb-proxy/lib/buffer-parser.js:35:20) at Socket. (/rethinkdb-proxy/lib/index.js:171:23) at Socket.emit (events.js:95:17) at Socket. (_stream_readable.js:765:14) at...
https://github.com/thejsj/rethinkdb-proxy/blob/master/src/buffer-parser.js#L77-L96 https://github.com/rethinkdb/rethinkdb/blob/next/drivers/javascript/net.coffee#L265-L309
Currently, the proxy only supports the JSON protocol. https://github.com/rethinkdb/rethinkdb/blob/next/drivers/javascript/net.coffee#L59-L62
I don't know if there's a reason why you haven't added this to Bower, but I wanted to `bower install` this and couldn't. I added the `bower.json`, which means that...
This is useful if you want to use something dynamically generated during the build process and want to somehow do something with that. Here's an example: ``` templateData: function ()...
When running the grunt task, the files weren't being copied to the `/tmp` directory. In my case, the following change fixed it: From: ``` exec( 'cp -ar '+ build_dir +...