Minified fork of whatwg-fetch providing a polyfill for the Fetch API in browsers that don't support it natively. Version 1.0.0 mirrors whatwg-fetch functionality but reduces file size. Releases are infrequent and tied to whatwg-fetch versions. Differentiator: smaller bundle footprint vs the upstream polyfill. Not recommended for new projects; use native fetch or more actively maintained polyfills.
npm install fetch-minNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to import the polyfill and use the global fetch function to make a GET request and handle the response.
Use import 'fetch-min' and rely on global fetch, Headers, Request, Response.
Use native fetch where available or switch to cross-fetch.
Use the unminified whatwg-fetch directly for development.
Ensure 'fetch-min' is imported at the entry point of your application (e.g., import 'fetch-min';).
Import the polyfill as a side effect: import 'fetch-min'; at the top of your app.
Run npm install fetch-min or yarn add fetch-min.
No dependency data recorded yet.