rubygem / mongorepositiory

nodejs npm package for repository pattern with mongodb database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mongorepository

A node.js module that contains a generic implementation of the Repository Pattern for mongoDB.

Installation

The easiest way to install is through the Node Package Manager (NPM):

npm install mongorepository

Usage

//reference the repository object
var Repository = require('mongoRepository').Repository;

//create an instance
var catRepository = new Repository('username:password@localhost/dbname', 'cat');

var cat = {
  _id : 101,
  name: 'trevor'
}

//add cat
catRepository.add(cat);

//get cat by id
catRepository.get(101, function(returnedCat){
	console.log(returnedCat);
});

//find cat
query = {name: 'trevor'}
catRepository.find(query, function(results){
  console.log(results);
});

//update cat
cat.age = 4;
catRepository.update(query, cat);

cat.age = 5;
catRepository.update(query, cat, function () {
	console.log("Updated ", cat);
});

//delete cat
catRepository.remove(query,function(){
	console.log("Removed ",cat);
});

catRepository.remove(query);

About

nodejs npm package for repository pattern with mongodb database