Skip to content

Instantly share code, notes, and snippets.

View Ayushkumar111's full-sized avatar
🤠

Ayush Kumar Ayushkumar111

🤠
View GitHub Profile
@Ayushkumar111
Ayushkumar111 / Complete-guide.js
Created October 1, 2025 15:48
Axios Automatic Proxy Detection Adapter Proposal ( ayushkumar111 )
//save the adapter code as httpWithProxyAdapter.js in the project
// configure Axios to use our new adapter for all the new request.
const axios = require('axios');
const httpWithProxyAdapter = require('./lib/adapters/httpWithProxyAdapter');
// enable for all requests
axios.defaults.adapter = httpWithProxyAdapter;