dbs
v0.2.0
Published
List common databases that are running
Downloads
22
Readme
dbs
List common databases that are running
Install
$ npm install --save dbs
Usage
Node.js
var dbs = require('dbs');
// Promise
dbs().then(function(databases) {
databases.forEach(function(db) {
console.log(db.type);
//=> mongo
console.log(db.running);
//=> true
});
});
CLI
$ npm install --global dbs
$ dbs
#=> mongo is running
License
MIT © Charlie Dowler