0.3.0 • Published 10 years ago

is-couch v0.3.0

Weekly downloads
6
License
MIT
Repository
github
Last release
10 years ago

is-couch NPM version Build Status Dependency Status

Check if a couchdb is running

See the dbs module for more database types.

Install

$ npm install --save is-couch

Usage

Node.js
var isCouch = require('is-couch');

// Callback
isCouch(function(db) {
  console.log(db.running);
  //=> true
});

// Promise
isCouch().then(function(db) {
  console.log(db.type);
  //=> couchdb
});

CLI

$ npm install -g is-couch
$ is-couch
#=> Up

Release History

  • 2014-10-20 v0.3.0 Fixed command so it actually works
  • 2014-08-28 v0.2.0 Re-published to fix typos (Broken)
  • 2014-08-27 v0.1.0 Initial release (Broken)

License

MIT © Charlie Dowler

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago