node-https-socks5-proxy
v1.1.1
Published
使用socks5协议转发nodejs https Api请求
Downloads
10
Readme
node-https-socks5-proxy
###简介 使用 socks5 代理转发 nodejs 的 http/https 请求 ###安装
npm i node-https-socks5-proxy
###使用
import * as https from "https";
import * as ProxySocket from "node-https-socks5-proxy";
const HOST = "www.google.com";
const PORT = 443;
const PATH = "/";
//转发到本地的ssr客户端
const PROXY_HOST = "127.0.0.1";
const PROXY_PORT = 1086;
const req = https.request(
{
host: HOST,
path: PATH,
port: PORT,
createConnection: (opt, oncreate) => {
ProxySocket.createConnection(
{
proxyHost: PROXY_HOST,
proxyPort: PROXY_PORT,
port: PORT,
host: HOST,
https: true,
},
oncreate
);
return null;
},
},
(res) => {
console.log(res.headers);
console.log(res.statusCode);
console.log(res.statusMessage);
res.on("data", (buf) => {
console.log(buf.toString("utf-8"));
});
}
);
req.end();