is-couch

0.3.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i is-couch

Weekly Downloads

2

Version

0.3.0

License

MIT

Last publish

Collaborators

  • charliedowler