rethinkdb-example-nodejs-chat icon indicating copy to clipboard operation
rethinkdb-example-nodejs-chat copied to clipboard

A node.js chat application running on rethinkdb

Results 8 rethinkdb-example-nodejs-chat issues
Sort by recently updated
recently updated
newest added

Just followed the instructions on the readme. cloned and ran `npm install` running `node app` gives: ``` shell ✘ shdsouza@L3011  ~/proj/_rethinkdb/rethinkdb-example-nodejs-chat   master  node app info -...

Hi, when I clone , npm install , and start the app I get : ``` AssertionError: RqlDriverError: Server dropped connection with message: "ERROR: The PROTOBUF client protocol is no...

https://github.com/rethinkdb/rethinkdb-example-nodejs-chat/blob/master/app.js#L48 has ``` passport.use(new local( function(username, password, done) { // asynchronous verification, for effect... process.nextTick(function () { ``` Is the `nextTick()` actually necessary, or is it 'for effect'? - If...

Right now the README just has: > A fork of the node.js chat app by @orkj using socket.io, rethinkdb, passport and bcrypt on an express app. How's this fork different?...

This example should be updated to take advantage of changefeeds (as well as use Express v4, as noted in #9).

Addressing potential **connection leak** issues caused by connections not being `close()`'ed properly inside a `run` handler function. For instance: if an error is thrown or the callback function screws up,...

https://github.com/rethinkdb/rethinkdb-example-nodejs-chat/blob/master/lib/db.js#L23 What is the cache table used for? I don't see it referenced anywhere else in the code. Should it be removed from the tables object within dbConfig? Thanks!