Socket
Book a DemoInstallSign in
Socket

cdb-client

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cdb-client

CouchDB Node JS Client

0.1.0
latest
Source
npmnpm
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

#CouchDB client for node.js

##Example

let cdbClient = require('cdb-client');

let dbConfig = {
   db: 'db-name',
   user: 'db-user',
   pass: 'user-pass'
}

let dbConnection = cdbClient({
    protocol: 'http',
    host: '127.0.0.1',
    port: '5984'
});

// Callback
dbConnection.getDb(dbConfig, (err, db) => {

    if(err) {

        return console.error(err);
    }

    console.log(db);
});

// Get a reference
let db = dbConnection.getDb(dbConfig);
db.get('your-key', (err, doc) => {

    if(err) {

        return console.error(err);
    }

    console.log(doc);

    doc.prop1 = 'Update';
    db.save(doc, (err, data) > {

        if(err) {

            return console.error(err);
        }

        console.log(data);
    });
});

##DB Connection functions

dbConnection.dbExists(dbConfig, callback)

dbConnection.createDb(dbConfig, [callback])

dbConnection.getDb(dbConfig, [callback])

##DB functions

db.save(doc, [callback]);

db.getAll(callback);

db.get(key, callback);

db.delete(doc, [callback]);

db.view(data, callback);

db.saveDesign(ddoc, name, [callback]);

db.getDesign(name, callback);

db.setSecurity(data, [callback]);

Keywords

couchdb

FAQs

Package last updated on 01 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.