Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
koa-pagination
Advanced tools
Koa Pagination is a middleware to handle Range Pagination Headers using Range
& Content-Range
entity-headers.
Choose your preferred method:
npm install --save koa-pagination
The middleware can be configured with the following parameters:
50
by default).Range
header is provided (items
by default).You can change the defaults by doing:
paginate({
maximum: 100,
unit: 'bytes'
});
var koa = require('koa');
var paginate = require('koa-pagination');
var app = koa();
app.get('/', paginate(), function *() {
// `paginate` middleware will inject a `pagination` object in the `koa` context,
// which will allow you to use the `pagination.offset` and `pagination.limit`
// in your data retrieval methods.
this.body = foobar.getData({
limit: this.pagination.limit,
offset: this.pagination.offset
});
// This is needed in order to expose the length in `Content-Range` header.
this.pagination.length = foobar.count();
});
app.listen(3000);
You can provide the Range
header specifying the items you want to retrieve. For instance to retrieve the first 5 elements:
'Range: items=0-4'
This will generate a response with the following Content-Range
header:
'Content-Range: items 0-4/*'
The *
will be replaced with the total number of items provided in the length
variable.
npm test
npm version [<newversion> | major | minor | patch] -m "Release %s"
MIT
v1.1.1 (2016-05-04)
FAQs
A middleware to handle Range Pagination Headers using Range & Content-Range entity-headers
The npm package koa-pagination receives a total of 246 weekly downloads. As such, koa-pagination popularity was classified as not popular.
We found that koa-pagination demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.