Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

koa-pagination

Package Overview
Dependencies
Maintainers
3
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koa-pagination

A middleware to handle Range Pagination Headers using Range & Content-Range entity-headers

  • 3.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
320
increased by22.61%
Maintainers
3
Weekly downloads
 
Created
Source

koa-pagination

koa-pagination is a middleware to handle Range Pagination Headers using Range & Content-Range entity-headers.

Status

npm version build status

Installation

Install the package via yarn:

❯ yarn add koa-pagination

or via npm:

❯ npm install koa-pagination --save

Configuration

The middleware can be configured with the following parameters:

  • allowAll: Whether to accept * as range-specifier.
  • maximum: Maximum number of items allowed per page (50 by default).
  • unit: Range unit to be used when no Range header is provided (items by default).

You can change the defaults by doing:

middleware({
  allowAll: true,
  maximum: 100,
  unit: 'bytes'
});

Usage

const { middleware } = require('koa-pagination');
const Koa = require('koa');

const app = new Koa();

app.get('/', middleware(), async ctx => {
  // `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.
  ctx.body = await foobar.getData({
    limit: ctx.pagination.limit,
    offset: ctx.pagination.offset
  });

  // This is needed in order to expose the length in `Content-Range` header.
  ctx.pagination.length = foobar.count();
});

app.listen(3000);

Request

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'

You can also provide * at the end of the range in order to retrieve the all of the available items:

'Range: items=0-*'

Response

The first example 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.

Codes
CodeReason
200Range header has not been provided.
206Range header is valid.
412Range header is malformed.
416Range header is invalid.
500Incorrect middleware configuration or unexpected value inside middleware.

Tests

❯ yarn test

Release

❯ npm version [<new version> | major | minor | patch] -m "Release %s"

FAQs

Package last updated on 30 Mar 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc