fetch-link-util
v1.1.1
Published
helper to extract fetch link header values (paging/RFC-8288)
Downloads
1,590
Readme
fetch-link-util
helper to extract fetch link header values (https://datatracker.ietf.org/doc/html/rfc8288)
Example
import { getHeaderLink } from "fetch-link-util";
async listAllBranches() {
let next = "https://api.github.com/repos/arlac77/fetch-link-util/branches";
do {
const response = await fetch(next);
const json = await response.json();
console.log(json.map(branch => branch.name));
next = getLink(response.headers);
} while (next);
}
API
Table of Contents
getHeaderLink
Decodes link header and delivers one href entry.
Parameters
Returns string href for given rel or undefined
install
With npm do:
npm install fetch-link-util
license
BSD-2-Clause