我正在制作一个节点应用程序,并且已经知道如何在需要时实现代理,不知道我如何实际检查当前的系统代理设置。
据我了解,它应该在process.env.http_proxy中,但是在我的Windows代理设置中设置了代理之后,这还不确定。
如何在NodeJS中获得当前的代理设置?
答案 0 :(得分:0)
您可以使用NPM的get-proxy-settings软件包。
它能够:
从Windows的ioternet设置中检索设置 注册表
我刚刚在Windows 10上进行了测试,它能够获取我的代理设置。
或者,您可以查看他们的source并自己完成。以下是一些关键功能:
async function getProxyWindows(): Promise<ProxySettings> {
// HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings
const values = await openKey(Hive.HKCU, "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings");
const proxy = values["ProxyServer"];
const enable = values["ProxyEnable"];
const enableValue = Number(enable && enable.value);
if (enableValue > 0 && proxy) {
return parseWindowsProxySetting(proxy.value);
} else {
return null;
}
}
function parseWindowsProxySetting(proxySetting: string): ProxySettings {
if (!proxySetting) { return null; }
if (isValidUrl(proxySetting)) {
const setting = new ProxySetting(proxySetting);
return {
http: setting,
https: setting,
};
}
const settings = proxySetting.split(";").map(x => x.split("=", 2));
const result = {};
for (const [key, value] of settings) {
if (value) {
result[key] = new ProxySetting(value);
}
}
return processResults(result);
}
async function openKey(hive: string, key: string): Promise<RegKeyValues> {
const keyPath = `${hive}\\${key}`;
const { stdout } = await execAsync(`${getRegPath()} query "${keyPath}"`);
const values = parseOutput(stdout);
return values;
}
function getRegPath() {
if (process.platform === "win32" && process.env.windir) {
return path.join(process.env.windir as string, "system32", "reg.exe");
} else {
return "REG";
}
}