is-couch
v0.3.0
Published
Check if couchdb is running
Downloads
15
Readme
is-couch
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