0.3.0 • Published 11 years ago
is-couch v0.3.0
is-couch  
  
 
Check if a couchdb is running
See the dbs module for more database types.
Install
$ npm install --save is-couchUsage
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
#=> UpRelease 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