Files
n8n-enterprise-unlocked/packages/@n8n/nodes-langchain/utils/httpProxyAgent.ts

12 lines
290 B
TypeScript

import { HttpsProxyAgent } from 'https-proxy-agent';
export function getHttpProxyAgent() {
const httpProxy =
process.env.HTTPS_PROXY ??
process.env.https_proxy ??
process.env.HTTP_PROXY ??
process.env.http_proxy;
return httpProxy ? new HttpsProxyAgent(httpProxy) : undefined;
}