本地开发nodejs服务走系统代理 https-proxy-agent
使用场景:前端开发中,后端API在工作电脑网络环境不能被直接访问,需要走公司内网代理,或上外网代理等系统代理服务;开发服务nodejs代理的浏览器请求, 可能不会自动走系统代理,需要手动配置。
const HttpsProxyAgent = require("https-proxy-agent")
// const HttpProxyAgent = require("http-proxy-agent")
// 例如本地系统代理端口为7890,将nodejs服务的请求转发到系统代理
const sysAgent = new HttpsProxyAgent(`http://127.0.0.1:7890`)
devServer: {
proxy: {
"/api/": {
target: "https://backendserver.com",
secure: true,
agent: sysAgent
},
},
},
npm: https-proxy-agent
咬文嚼字:proxy and agent
标签:const,nodejs,代理,agent,proxy,https From: https://www.cnblogs.com/da-datang/p/18516525