0.9.4 • Published 10 years ago

tabber v0.9.4

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

tabber

A library of mongodb helper functions to make manipulating your db and its collections better (er).

Installation

npm install in-parallel --save

Usage

Initialize inParallel like so:

//required tabber
	var Tabber = require('tabber');

//create a new instance of tabber
var tabber = new Tabber(true);

###A Simple Example

  tabber.config({"showDebugMessages": true});

    tabber.findOneByAndRun(db, NOTIFICATIONS_COLLECTION, {
      userId: 1836
    }, function(notification){
      //success
      if(notification) {
        //do something with it
      }
    }, function(err){
      //handle the error
    });

Config

###Debug Messages Debug messages are NOT printed to the console by default but you can choose to have them printed like so:

	var tabber = new Tabber(false);

  OR 

  var tabber = new Tabber();

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Release History

  • 0.1.0 Initial release

##Credits I used this article to learn how to publish npm articles: https://quickleft.com/blog/creating-and-publishing-a-node-js-module/

0.9.4

10 years ago

0.9.3

10 years ago

0.9.2

10 years ago

0.9.1

10 years ago

0.9.0

10 years ago

0.8.0

10 years ago

0.7.0

10 years ago

0.6.0

10 years ago

0.5.0

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago