sakulstra / meteor-aggregate

Proper MongoDB aggregations support for Meteor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

maintained fork of meteorhacks:aggregate

A simple package to add proper aggregation support for Meteor. This package exposes .aggregate method on Mongo.Collection instances.

this only works on server side and there is no oberserving support or reactivity built in

Usage

Add to your app with

meteor add sakulstra:aggregate

Then simply use .aggregate function like below.

var metrics = new Mongo.Collection('metrics');
var pipeline = [
  {$group: {_id: null, resTime: {$sum: "$resTime"}}}
];
var result = metrics.aggregate(pipeline);

Using Options

var result = new Mongo.Collection('metrics');
var metrics = new Mongo.Collection('metrics');
var pipeline = [
  {$group: {_id: null, resTime: {$sum: "$resTime"}}}
];
var result = metrics.aggregate(pipeline, {explain: true});
console.log("Explain Report:", JSON.stringify(result[0]), null, 2);

Why?

There are few other aggregation packages out there. All of them written with some complex hacks and there are some easy way to do things. They also don't work with custom Mongo drivers as well.

And this package is short and simple. (~20 LOC)

What the fork?!

meteorhacks/meteor-aggregate seems pretty unmaintained, so let's maintain a fork! Meteor 1.7 and it's upgrade to mongodriver v3 introduced some breaking changes which will break meteorhacks:meteor-aggregate.

Breaking changes

  • meteorhacks:collection-utils@1.2.0 is no longer a dependency. If you're using meteor <= 1.0.4 you have to add it manually.

About

Proper MongoDB aggregations support for Meteor

License:MIT License


Languages

Language:JavaScript 100.0%