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

Results 11 rethinkdb-example-nodejs issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [express](https://github.com/expressjs/express) from 4.17.1 to 4.19.2. Release notes Sourced from express's releases. 4.19.2 What's Changed Improved fix for open redirect allow list bypass Full Changelog: https://github.com/expressjs/express/compare/4.19.1...4.19.2 4.19.1 What's Changed Fix...

dependencies

Bumps [express](https://github.com/expressjs/express) from 4.12.3 to 4.19.2. Release notes Sourced from express's releases. 4.19.2 What's Changed Improved fix for open redirect allow list bypass Full Changelog: https://github.com/expressjs/express/compare/4.19.1...4.19.2 4.19.1 What's Changed Fix...

dependencies

Give me please example for koa 2.x and koa-router 7.x

I was passing through and noticed that the koa example was severely out of date, so I cleaned it up and made it much more koa-idiomatic. Mainly, - Removed redundant...

$ node --harmony app.js //rethinkdb-example-nodejs/todo-angular-koa/node_modules/rethinkdb/ast.js:127 if (!options.noreply && typeof callback !== 'function') { ^ TypeError: Cannot read property 'noreply' of undefined at IndexWait.TermBase.run (//rethinkdb-example-nodejs/todo-angular-koa/node_modules/rethinkdb/ast.js:127:17) at //rethinkdb-example-nodejs/todo-angular-koa/app.js:128:45 at TcpConnection. (//rethinkdb-example-nodejs/todo-angular-koa/node_modules/rethinkdb/net.js:78:16) at...

``` app.get('/todo/get', get); app.put('/todo/new', create); app.post('/todo/update', update); app.post('/todo/delete', del); ``` Should it be this? ``` app.get('/todo/:id', get); app.put('/todo/:id', update); app.post('/todo', create); app.delete('/todo/:id', del); ``` Just curious why the weird endpoints...

``` function* create(next) { try{ // Parse the POST data var todo = yield parse(this); //this throws an error ``` https://github.com/rethinkdb/rethinkdb-example-nodejs/blob/master/todo-angular-koa/app.js#L64 This example throws an error for me. ![screenshot 2015-05-21...

bug

`var result = yield r.table('todos').get(todo.id).update(todo, {returnVals: true}).run(this._rdbConn);` getting this message: `return_vals renamed to return_changes in: r.table("test").get("d53419a8-7a4c-4a8c-ab0c-338a8c677170").update({id: "d53419a8-7a4c-4a8c-ab0c-338a8c677170", name: "Joe2a"}, {returnVals: true})`

This issue is about the demo of promise. It seems that https://github.com/rethinkdb/rethinkdb-example-nodejs/blob/master/todo-angular-express-promise/app.js#L135 and https://github.com/rethinkdb/rethinkdb-example-nodejs/blob/master/todo-angular-express-promise/app.js#L137 can be rejected and since they are not handled by any `.error()` clause, it is likely...

The readme should mention a) what the demo is about (it just says "Examples using Node.js and RethinkDB" currently) b) how to run the example c) how to configure which...