A tiny, 800-byte wrapper around the native Fetch API that provides the same API as Axios. Version 0.5.1 is the latest stable release. It is designed as a lightweight alternative to Axios for modern browsers and environments where Fetch is available. Unlike Axios, it has no built-in progress events, no automatic JSON parsing for errors, and no support for older browsers without a fetch polyfill. It is best suited for reducing bundle size when full Axios is not needed.
npm install redaxiosNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Fetches repository info from GitHub using the Axios-like API provided by redaxios.
Manually parse error responses with try-catch and JSON.parse() if needed.
Pass an AbortSignal via the signal option in the request config.
Fall back to using fetch directly if progress events are required.
Include a fetch polyfill like whatwg-fetch and ensure Promise support.
Run 'npm install redaxios' and ensure import statement is correct.
Use 'import axios from 'redaxios'' instead of '{ axios }'.Use Node.js version 18+ or install a fetch polyfill like 'node-fetch'.
Check the response object shape and handle non-JSON responses manually.
No dependency data recorded yet.