couchr
Simple request library for CouchDB. Provides both a Node.js module and a
browser module (based on jQuery.ajax), with better CouchDB error reporting
and a simpler API than making XHR requests directly in the browser.
Examples
require(['couchr'], function (couchr) {
couchr.get('/dbname/docid', function (err, doc) {
...
});
});
var couchr = require('couchr');
couchr.get('http://hostname:port/dbname/docid', function (err, doc) {
...
});
Methods
couchr.get (url, params, function (err, res, req) { ... })
couchr.post(url, data, function (err, res, req) { ... })
couchr.put (url, data, function (err, res, req) { ... })
couchr.del (url, data, function (err, res, req) { ... })
couchr.head(url, function (err, res, req) { ... })
couchr.copy(from, to, function (err, res, req) { ... })
var feed = couchr.changes(db_url);
feed.on('change', function (change_object) { ... });
feed.on('error', function (err) { ... });
feed.pause();
feed.resume();
Installation
Browser (using jam):
jam install couchr
Node (using npm):
npm install couchr