Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

311
Views
How to connect to a external websocket using node JS?

I need to connect to a external websocket using node JS,but every single tutorial I find online is only about creating server/client and connecting to each other. I already have an external url with a websocket i need to access (even tho it is connected to my network,i have no control over it, so i won't be creating a server or anything like that). It is that simple; Connecting to a external URL using Node JS Websocket/socket.io. So far i have this code, but there is a great chance that it is completely wrong, as im not very experienced in Node JS. So feel free to completely change it. No need to try to upgrade it.

io = require('socket.io-client');
var socket = io.connect('MY.WEBSOCKET.ADDRESS');

function doStuff(){


//Listener
socket.on('connection', function(){
   try {
      console.log('connected!');
   }
});
}


doStuff();

What am i getting wrong?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Since the external server is a plain webSocket server, you can't use a socket.io client to connect to a webSocket server. You would have to use a webSocket client. While socket.io can use webSocket as a transport, it has its own connection layer on top of that and you can't directly connect a socket.io client to a webSocket server. So, you need a plain webSocket client library for nodejs.

Nodejs does not have built-in webSocket support so you can use one of these two libraries on NPM which both have webSocket client support for nodejs:

https://www.npmjs.com/package/websocket

https://www.npmjs.com/package/ws

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!