couchdb-request
Minimalist couchdb client on top of request. Unlike other couchdb-client, this module expose the powerful request object to enable chaining. This make it easy to use it as a proxy between client (browser) and couchDB server.
This in turn allows us to do additional action like sending email confirmation after user successfully register or add additional check at the login form to rate limit login attempt.
Install
$npm install couchdb-request
Method
API
All method is basically a very light request abstraction and every call will return the same request object. All method from request module is available. Please refer the CouchDB API documentation at docs.couchdb.org for available REST API.
configuration
const couchdb = opts
This api should be called first to set the correct database parameter before calling any database action method.
- opts full url sytax eg: https://admin:password@localhost:5984
database(url)
Database name to query to
- database name eg: booking
get(id, [callback])
Get database value
- id document id
- callback (optional) function to execute after request complete
put(id, data, [callback])
Insert data to database
- id document id
- data (json) object data to save
- callback (optional) function to execute after request complete
post(id, data, [callback])
Insert data to database
- id document id
- data (json) object data to save
- callback (optional) function to execute after request complete
del(id, callback)
Delete data from database
- id document id
- data (json) object to save
- callback function to execute after request complete
save(id, data, callback)
Update existing data. This api will automatically get the latest rev to use for updating the data.
- id document id
- data (json) object to save
- callback function to execute after request complete
view(design, opts, [callback])
Query rows of data using views
- id view id
- opts (json) options parameter as documented here
- callback (optional) function to execute after request complete
Usage example
const bodyParser = ;const express = ;const couchdb = 'https://admin:password@localhost:5984'; var app = ;app; app app;
Using callback function
couchdb