Package Exports
- mongoose-paginate
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mongoose-paginate) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
mongoose-paginate

Mongoose ORM (NodeJS/MongoDB) Document Query Pagination
To be used in combination with view pagination middleware such as express-paginate.
Installation
npm install -S mongoose-paginate
Usage
Basic
/*
* basic example usage of `mongoose-pagination`
* querying for `all` {} items in `MyModel`
* paginating by second page, 10 items per page (10 results, page 2)
*/
var mongoosePaginate = require('mongoose-paginate');
MyModel.plugin(mongoosePaginate)
MyModel.paginate({}, 2, 10, function(error, pageCount, paginatedResults, itemCount) {
if (error) {
console.error(error);
} else {
console.log('Pages:', pageCount);
console.log(paginatedResults);
}
});
Advanced
/*
* basic example usage of `mongoose-pagination`
* querying for `{ columns: 'title', { populate: 'some_ref' }, { sortBy : { title : -1 } }` items in `MyModel`
* paginating by second page, 10 items per page (10 results, page 2)
*/
var mongoosePaginate = require('mongoose-paginate');
MyModel.plugin(mongoosePaginate)
MyModel.paginate({}, 2, 10, function(error, pageCount, paginatedResults, itemCount) {
if (error) {
console.error(error);
} else {
console.log('Pages:', pageCount);
console.log(paginatedResults);
}
}, { columns: 'title', { populate: 'some_ref' }, { sortBy : { title : -1 } });
Run Tests
$ npm test