socks5-https-client icon indicating copy to clipboard operation
socks5-https-client copied to clipboard

SOCKS v5 HTTPS client implementation in JavaScript for Node.js.

Results 12 socks5-https-client issues
Sort by recently updated
recently updated
newest added

your library doesn't work with nodejs 14+ and higher, did you consider to fix it?

I'm trying to use this Agent with socket.io-client library ``` require("dotenv-safe/config") const io = require("socket.io-client") const Agent = require("socks5-https-client/lib/Agent") const agentOptions = { socksHost: process.env.HOST, socksPort: process.env.PORT, socksUsername: process.env.USERNAME, socksPassword:...

Thanks for the great library, but I am dealing with the following problems. 1. When I try to set `timeout`, like that ``` let proxyRequest = request({ url: "checkipsite", strictSSL:...

Hi, The Tor request example does not route via Tor, it appears to be just a standard request (i.e. via request) and reveals the real IP, both in terms of...

Hi, Is there any way to decompress without the need for external dependencies like zlib etc? I am struggling to decompress the response even with zlib presently at any rate....

``` Network Error: Client network socket disconnected before secure TLS connection was established ``` sometimes this error will occur

For those who are working in typescript project can get type inference and autocomplete.

When doing concurrent requests the first proxy used can never be changed. ``` var myip = "https://api.ipify.org?format=json"; var res = await request({ method: 'GET', uri: myip, agentClass: Agent, agentOptions: {...

` var form = new FormData(); form.append('file', fs.createReadStream('./test.jpg'), { filename: 'test.jpg', contentType: 'image/jpeg' }); var req = request({ url: 'https://myserver.com/fileupload', agentClass: Agent, agentOptions: { socksHost: 'torproxy', socksPort: 9050 }, method:...

I have a request inside loop. After starting my program it gives this error: Error: getaddrinfo EMFILE localhost:9050 Is there any option for close socket after request?