@inrupt/universal-fetch
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Universal Fetch

@inrupt/universal-fetch is a TypeScript library for accessing the fetch method from any environment.

In browsers, this library will always re-export the existing fetch function from the global scope.

In Node.js environments, the library first checks if fetch is globally available (as is the case in Node 18, and is being back-ported into Node 16), then the global fetch is used. Otherwise, the fetch function exported by undici is used for Node 16, and node-fetch is used for Node 14-and-below.

Usage

import fetch, { Headers, Request, Response } from "@inrupt/universal-fetch";

const response = await fetch(url);

Changelog

See the release notes.

License

MIT © Inrupt

/@inrupt/universal-fetch/

    Package Sidebar

    Install

    npm i @inrupt/universal-fetch

    Weekly Downloads

    1,587

    Version

    1.0.3

    License

    MIT

    Unpacked Size

    11 kB

    Total Files

    14

    Last publish

    Collaborators

    • astrid.vazquez
    • timbl
    • rubenverborgh
    • nseydoux
    • inrupt_ci