1
vote
1answer
50 views

Put some documents from CouchDB to Array (Node.JS)

I try get 3 documents with IDs: 1, 100, 1000. But node.js is async, and array objects in result is empty. How put documents into array? var objects = {}; var objectsID = [1, 100, 1000]; ...
3
votes
1answer
457 views

Updating a CouchDB document in nano [closed]

I need to get a document, change/insert/delete some fields and put it back. The "put" action requires the current revision of the document, but in nano I cannot find any function which takes a ...
2
votes
1answer
511 views

Update a field of a document in nano module of nodejs for couchdb

Say that there is a couchdb session opened through nano on node.js var dbserv = require('nano')('http://localhost:5984'); At the couchdb server dbserv can access, there is a database users with ...
0
votes
1answer
220 views

JavaScript Callback with nano and now.js

everyone.now.getGuess = function(val) { db.view('lists', 'project_names', { startkey: val, endkey: val + "\u9999" }, function(_, data) { return data.rows.map(function(obj) { ...