mongoose-hookup

0.1.3 • Public • Published

NPM version Build Status

Overview

Mongoose Hookup is a Mongoose connection manager.

Installation

$ npm install mongoose-hookup

Usage

var mongoosehookup = require('mongoose-hookup');
var hookup = mongoosehookup(1000);

// Single connection
hookup.connect('localhost/db_name',function(err,conn){
  
  if( err){
    // handle error
  }else{
    // use connection
  }
});

// Multiple connections in one
hookup.connect([
  'localhost/db_name',
  'localhost/db_name_2'],
  function(err,conn){
  
  if( err){
    // handle error
  }else{
    // use connection
  }
});

// Retrieve a connection by database name
var conn = hookup.getConnection('db_name');

License

(The MIT License)

Copyright (c) 20014 Big Mountain Ideas + Innovations jovan@bigmountainideas.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i mongoose-hookup

Weekly Downloads

0

Version

0.1.3

License

MIT

Last publish

Collaborators

  • bigmountainideas