A fork of axios (Promise based HTTP client for browser and Node.js) with proxy support fixes. v0.16.3 is a legacy version based on axios 0.16.x, which is no longer actively maintained. Note that the original axios is at v1.x and has breaking changes from v0.x. This fork is not the official axios and may have diverged. Use official axios for modern projects.
npm install axios-proxy-fixNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic GET/POST requests with axios-proxy-fix (v0.16.x style). Note that error handling uses catch().
Consider using official axios with manual proxy configuration, or use http-proxy-agent and https-proxy-agent.
Do not mix axios v1.x and v0.x. Use consistent version.
Run: npm uninstall axios-proxy-fix && npm install axios@latest
Ensure proxy object has host and port properties: proxy: { host: 'localhost', port: 8080 }Use official axios and set adapter explicitly if needed: adapter: require('axios/lib/adapters/http')Add error handling that checks error.response: if (error.response) { ... } else { ... }