Giter VIP home page Giter VIP logo

Comments (7)

spectral-software avatar spectral-software commented on June 24, 2024 3

NOTE: After playing around some more, I can get it working by directly using the socks module, which I noticed your module depends on.

https://github.com/JoshGlazebrook/socks

var WebSocket = require('ws');
var Socks = require('socks');
var Agent = new Socks.Agent({
  proxy: { ipaddress: '127.0.0.1', port: 9050, type: 5 }
});

var socket = new WebSocket('ws://[host]', { agent: Agent });
socket.on('open', function(){
  console.log('Open event fired!');
});

from node-socks-proxy-agent.

spectral-software avatar spectral-software commented on June 24, 2024

Same issue here - when connecting without socks-proxy-agent, the open event fires normally.

Also, on the server, if I use ws.terminate() or end the process, the open event finally fires on the client.

from node-socks-proxy-agent.

TooTallNate avatar TooTallNate commented on June 24, 2024

Do you guys have some sample repro code?

from node-socks-proxy-agent.

spectral-software avatar spectral-software commented on June 24, 2024

Sure!

var WebSocket = require('ws');
var Agent = new (require('socks-proxy-agent'))(process.env.socks_proxy || 'socks://127.0.0.1:9050');

var socket = new WebSocket('ws://[host]', { agent: Agent });
socket.on('open', function(){
  console.log('Open event fired!'); // doesn't fire until the server closes the connection
});

from node-socks-proxy-agent.

Elbandi avatar Elbandi commented on June 24, 2024

I dont know, this are the same issue (i got open event, just the response dont arrive).
Anyway wss:// destinations are good for me!

from node-socks-proxy-agent.

TooTallNate avatar TooTallNate commented on June 24, 2024

Can you all try with socks-proxy-agent >= v3? I believe that this was fixed by 4af4874.

from node-socks-proxy-agent.

slidenerd avatar slidenerd commented on June 24, 2024

I am sorry if this is a stupid question but how do I actually find out if the websocket connection is using the proxy or not, I try any combination of publicly available free proxies from this website to test https://www.sslproxies.org/ and it always seems to connect, am I missing something, my ws client running on node

from node-socks-proxy-agent.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.