Mongeese
This library supercharges the mongoose Array class by adding some async functional methods, and some extra goodies.
Installation
$ npm install mongeese-array --save
Before you define your models, require
mongeese. It will modify the prototypes of several mongoose classes, so you can't require it after you make your models.
Async methods
Imagine you had a user class with an array of objectId references to kittens. With mongeese, you can do this
var { } someUserkittens
Mongeese will ensure that the path has been populated, but will not populate an already populated path.
Functions available directly from the async library:
- asyncEach
- asyncEachLimit
- asyncMap
- asyncMapLimit
- asyncReduce
- asyncReduceRight
- asyncSortBy
- asyncConcat
Invoke
I've added an additional method that async hasn't implemented: invoke. Let's say you wanted to invoke the meow
method on all the kittens in a user's kittens array.
someUserkittens
After ensuring that the kittens array has been populated, Mongeese will asynchronously call the meow method on each kitten. invoke
is really a front for async map, so it is assumes that the function you invoke will act sort of like an iterator.
Development & Contribution
If you see anything wrong or want a feature, pull requests are welcome. To run the test suite
$ npm test