Skip to content

charliedowler/is-postgres

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is-postgres NPM version Build Status Dependency Status

Check if a postgres is running

See the dbs module for more database types.

Install

$ npm install --save is-postgres

Usage

Node.js
var isPostgres = require('is-postgres');

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

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

CLI

$ npm install --global is-postgres
$ is-postgres
#=> Up

Release History

  • 2014-10-20 v0.2.0 Cross platform support
  • 2014-08-31 v0.1.0 Initial release

License

MIT © Charlie Dowler

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published