# http-proxy-env **Repository Path**: mirrors_alexgorbatchev/http-proxy-env ## Basic Information - **Project Name**: http-proxy-env - **Description**: proxy all requests when NODE_PROXY env is set - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # proxy-all Proxies all http/https requests when NODE_PROXY env is set ## Install ``` npm install --save proxy-all ``` ## Use ### require the module ```js require('proxy-all'); // ... your code ... ``` ### run your code with NODE_PROXY set ``` NODE_PROXY=http://localhost:8080/ node index.js ```