Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
cagination
Advanced tools
A Mongoose helper to simplify the pagination process.
If you are looking for a nice front-end component to interface with pagination, check out our AngularJS project Cagination Angular. These two projects integrate nicely for seamless, full stack pagination.
var currentPage = data.currentPage;
var perPage = data.perPage;
var options = {
actorId: nicCage._id
};
Film.find(options).select('name actorId').populate({
path: 'actorId',
select: 'lastName'
}).sort({
name: -1
}).skip((currentPage - 1) * perPage).limit(perPage).exec(function(err, films) {
Film.count(options).exec(function(err, count) {
var totalPages = Math.ceil(count / perPage);
// return films and totalPages
});
});
NOT THE PAGES! NOT THE PAGES! AGWHGHAHGHAA THEY'RE CLOGGING MY CODE!
Of course this is quite a mess, and painful to rewrite for each query you need paginated. Although the .count() procedure is pretty quick, to make this really efficient, you would need to also utilize async to perform that operation in parallel with .find(). But then you have a real disaster on your hands for such a simple task.
Caginate aims to be robust but reproducible. Like your standard find() query, Caginate can accept the same options for select, populate, and sort. However, Caginate handles all of the bothersome math and manual skipping/limiting needed to get a paginated return. Additionally, it asynchronously grabs the document count in order to provide you with the total number of pages.
var currentPage = data.currentPage;
var perPage = data.perPage;
var options = {
firstName: 'Nicolas'
};
caginate(Film, {
options: options,
select: 'name actorId',
populate: {
path: 'actorId',
select: 'lastName'
},
sort: {
name: -1
},
maxTime: 500,
perPage: perPage,
currentPage: currentPage
}).exec(function(err, films, count, totalPages) {
// return films and totalPages
});
Get the source from GitHub or install via NPM
npm install cagination --save
Make sure to add:
var caginate = require('cagination').find;
and you should be set. At any time you want paginated results, replace your Mongoose Model.find(query, callback)
with caginate(Model, query, callback)
.
The Caginate query is an object consisting of:
find
, such as {score : {$meta : 'textScore'}}
for text searchesboolean
, optional - defaults to false)The Caginate callback will look something like:
caginate(Model, {
perPage: 10,
currentPage: 1
}, function(err, documents, count, totalPages) {
if(err) {
// handle the Mongoose error
}
// documents - documents matching query but limited by perPage
// count - the total number of documents matching your query
// totalPages - pages needed to fit all of the documents at 10 per page
});
maxTime
optionfind
, in a new field called meta
lean
optionFAQs
A Mongoose helper to simplify the pagination process.
The npm package cagination receives a total of 0 weekly downloads. As such, cagination popularity was classified as not popular.
We found that cagination 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.