header-pagination

2.0.2 • Public • Published

header-pagination

Actions Status

Parse rfc5988 style pagination Link headers from a fetch Response object.

npm install header-pagination

Usage

import { getPagination } from 'header-pagination'

window.fetch(req).then(async response => {
  const pagination = getPagination(response.headers)
  // {
  //    last,
  //    next,
  //    prev,
  //    first,
  //    current,
  //    total (if X-Total-Count is included)
  // }
  const json = await response.json()
  return {pagination, json}
})

API

getPagination(response)

Given a fetch Response, returns an object with the following properties:

{
  last,
  next,
  prev,
  first,
  current,
  total // if X-Total-Count is included
}

See also

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i header-pagination

Weekly Downloads

7

Version

2.0.2

License

MIT

Unpacked Size

13.6 kB

Total Files

14

Last publish

Collaborators

  • bret