
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
koa-mongoose-pagination
Advanced tools
Mongoose ORM (NodeJS/MongoDB) Document Query Pagination using generators (Koa compatible)
Mongoose ORM (NodeJS/MongoDB) Document Query Pagination using generators (Koa compatible)
To be used in combination with view pagination middleware such as express-paginate.
Based on mongoose-paginate by edwardhotchkiss.
This version uses generators and it's compatible with Koa framework.
Examples uses let instead of var. Feel free to use whatever fits you. Remember to use strict mode.
npm install -S koa-mongoose-pagination
'use strict';
let koaMongoosePagination = require('koa-mongoose-pagination');
MyModel.plugin(koaMongoosePagination);
/*
* basic example usage of `koa-mongoose-pagination`
* paginating by second page, 10 items per page (10 results, page 2)
*/
'use strict';
const resultsPerPage = 10;
const currentPage = 2; // You should use this.query.page here
const { data, count } = yield MyModel.paginate({
conditions: { 'status': true }, // Only enabled items
columns: '_id name', // Retrieve only those columns
sortBy: { '_id': -1 }, // Sort by _id DESC
limit: resultsPerPage,
offset: (currentPage * resultsPerPage) - resultsPerPage
});
console.log(data); // Results from the paginated set
console.log(count); // Total results in the query
NOTE: You need Babel (or any other transpiler) to make use of variable destructuring (const { data, count } = ...). With Babel, simply install babel package and require the hook in your main app.js:
require('babel/register');
{}.null.{ _id: -1 }.10.0.In Koa, you can use try/catch to manage the errors.
FAQs
Mongoose ORM (NodeJS/MongoDB) Document Query Pagination using generators (Koa compatible)
The npm package koa-mongoose-pagination receives a total of 6 weekly downloads. As such, koa-mongoose-pagination popularity was classified as not popular.
We found that koa-mongoose-pagination demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.