npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

probe_couchdb

v0.8.0

Published

Spider a CouchDB server, emit events with discovered information

Downloads

52

Readme

Comprehensive event-driven CouchDB exploration

Probe CouchDB is a Javascript library which digs into every corner of a CouchDB server and fire events when it finds interesting things: users, configs, databases, design documents, etc.

Probe CouchDB is available as an NPM module.

$ npm install probe_couchdb

You can also install it globally (npm install -g) to get a simple probe_couchdb command-line tool.

Is it any good?

Yes.

Usage

Probe CouchDB is an event emitter. Give it a URL and tell it to start.

var probe_couchdb = require("probe_couchdb");

var url = "https://admin:[email protected]";
var couch = new probe_couchdb.CouchDB(url);

couch.start();

Next, handle any events you are interested in.

couch.on('db', function(db) {
  console.log('Found a database: ' + db.url);
  db.on('metadata', function(data) {
    console.log(db.name + ' has ' + data.doc_count + ' docs, using ' + (data.disk_size/1024) + 'KB on disk');
  })
})

Options and Defaults

Probe CouchDB is defaultable. Customize its major behaviors by setting its default options:

// Stock behavior
var probe_couchdb = require("probe_couchdb");

// Modified behavior
var proxied_probe = probe_couchdb.defaults({ http_proxy: "http://localhost:8080/" })
  , probe_verbose = probe_couchdb.defaults({ log_level: "debug" })
  , skips_users   = probe_couchdb.defaults({ do_users : false   })
  , skips_designs = probe_couchdb.defaults({ do_ddocs : false   })
  , skips_dbs     = probe_couchdb.defaults({ do_dbs   : false   });

// Combined behavior
var my_probe = probe_couchdb.defaults({ http_proxy: "http://localhost:8080"
                                      , log_level : "debug"
                                      , url       : "http://admin:secret@localhost:5984"
                                      })

// Inherited behavior
var three_dbs = my_probe.defaults({ only_dbs:["foo", "bar", "baz"] })
  , B_dbs     = my_probe.defaults({ only_dbs: /^b/                 });

API Overview

This is the object hierarchy: CouchDBDatabaseDesign document

  • A CouchDB explores the main server, including zero or more db events, containing a Database probe.
  • A Database explores a database, including zero or more ddoc events, containing a design document probe.
  • A Design document explores a design document.

Common Events

All events pass one parameter to your callback unless otherwise noted.

  • start | The probe is beginning its work; 0 callback arguments
  • end | The probe has finished its work; 0 callback arguments
  • error | An Error object indicating a problem. Databases re-emit all design document errors, and CouchDBs re-emit all database errors.

Common properties

  • url | The url to this resource (either a couch, a database, or a design doc)
  • log | A log4js logger. Databases inherit the log from CouchDBs, design documents inherit the log from databases.

Common methods

  • request(options, callback) | A request wrapper. Headers for JSON are set, and the response body is JSON-parsed automatically.
  • known(event, callback) | Register a callback guaranteed to run, even if the event already happened (see Known section below)

CouchDB Probes

You create these using the API.

Events

  • couchdb | The server "Welcome" message (/ response)
  • session | The session with this server (/_session response). Check .userCtx to see your login and roles.
  • config | The server configuration (/_config response). If you are not the admin, this will be null.
  • users | Object with all user documents (from the _users database). Keys are the document IDs, values are the documents. Always includes a null key with the anonymous user.
  • pingquery | The result of pinging the CouchDB query server, if the plugin is installed. 2 callback arguments: the language, e.g. "coffeescript"; and ping result, e.g. {"ok":true} or {"error":"bad_ping", "reason":"no_match"}.
  • db | A Database probe. If you care about that database, subscribe to its events!

These events are used internally and less useful:

  • dbs | An array of databases on this server
  • end_dbs | Indicates that all databases have been processed
  • end_pings | Indicates that pinging all query servers is done

Properties

  • only_dbs | Either an array, to probe only specific databases, or a function(db_name) which returns whether to probe that database.
  • max_users | Emit an error if the server has more users than this number.

Methods

  • start() | Start probing the server
  • anonymous_user() | Helper function to produce an anonymous userCtx: {"name":null, "roles":[]}

Database Probes

CouchDB probes pass database probes to your callback on the db event.

Events

  • metadata | The database metadata (/db response), or null if you haven't read permission
  • security | The security object (/db/_security response), or null if you haven't read permission
  • ddoc | A design document probe. If you care about that design document, subscribe to its events!

These events are used internally and less useful:

  • ddoc_ids | An array of design document IDs
  • end_ddocs | Indicates that all design documents have been processed

Properties

  • couch | The database's parent CouchDB probe
  • name | The database's name

Methods

all_docs(options, callback) | Run an _all_docs query. The options object (if given) is querystring parameters, e.g. {"include_docs":true, startkey:["name", "S"]}

Design Document Probes

Database probes pass design document probes to your callback on the ddoc event.

Events

  • body | The design document, as a Javascript object
  • info | The design document metadata info (/db/_design/ddoc/_info response)
  • language | A string representing the language this design document uses. This is whatever the .language field in the document is. Usually this is "javascript", or else undefined if it was not specified
  • view | 2 callback arguments: the view name (e.g. "by_name"), and then the view object (e.g. {"map":"function(doc) { ... }"}
  • code_error | Indicates that a Javascript view has a error in its source code (either syntax, or nonstandard function signature); 4 callback arguments:
    1. The error object
    2. The name of the view in question, e.g. "by_name"
    3. The name of the function in question, e.g. "map" or "reduce"
    4. The function source code, e.g. "function(doc) { ... }"

These events are used internally and less useful:

end_views | Indicates that all views have been processed

Properties

  • db | The design document's parent database probe
  • id | The design document's ID, e.g. "_design/example"

Methods

No methods.

Correct event order

Often you want to know multiple things about the server. But normal EventEmitter .on() calls will not work. For example, to determine your own user document:

// XXX: Bad code! What if the session event fires before the users event?
couch.on('users', function(users) {
  couch.on('session', function(session) {
    var my_id = 'org.couchdb.user:' + session.userCtx.name;
    var my_doc = users[my_id];
    console.log("My user doc: " + JSON.stringify(my_doc));
  })
})

If the event has not yet fired, .known() works just like .on(). But if the event has fired already, .known() will immediately run your callback with the event data. In other words, using .known() you don't have to worry about event order.

// Good code.
couch.known('users', function(users) {
  couch.known('session', function(session) {
    var my_id = 'org.couchdb.user:' + session.userCtx.name;
    var my_doc = users[my_id];
    console.log("My user doc: " + JSON.stringify(my_doc));
  })
})