Socket
Socket
Sign inDemoInstall

axios-proxy-builder

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    axios-proxy-builder

A simple utility to build an axios proxy request object from env's


Version published
Weekly downloads
194K
increased by1.37%
Maintainers
1
Install size
74.5 kB
Created
Weekly downloads
 

Readme

Source

axios-proxy-builder

A simple utility to build an axios proxy request object from standard http proxy environmental variables.

NoProxy logic inspired by the (now deprecated) Request project: https://github.com/request/request/blob/3c0cddc7c8eb60b470e9519da85896ed7ee0081e/lib/getProxyFromURI.js

Usage

Set environmental variables

Set proxy address as well as no proxy whitelist to your environmental variables:

HTTP_PROXY-http://test.com:8000
http_proxy

HTTPS_PROXY=https://test.com:8000
https_proxy

NO_PROXY=example.test.com,example2.test.com

Add to your project

Add the configureProxy method to your project and pass in the request url to get back a proxy object that can be added to any axios request.

import { configureProxy } from "axios-proxy-builder";

const requestURL = "https://request-url.com/resource";
const proxy = configureProxy(requestURL);

// make REST call
axios({ ...proxy, url: requestURL });

FAQs

Last updated on 22 Apr 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc