Differences between TCP sockets and web sockets, one more time [duplicate]

This question already has answers here: What is the fundamental difference between WebSockets and pure TCP? (4 answers) Closed 3 years ago. Trying to understand as best as I can the differences between TCP socket and websocket, I’ve already found a lot of useful information within these questions: fundamental difference between websockets and pure TCP … Read more

Good beginners tutorial to socket.io? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for … Read more

Why use AJAX when WebSockets is available?

I’ve been using WebSockets for a while now, I have chosen to create an Agile project management tool for my final year project at University utilizing Node server and WebSockets. I found using WebSockets provided a 624% increase in the number of requests per second my application could process. However since starting the project I’ve … Read more

Send message to specific client with socket.io and node.js

I’m working with socket.io and node.js and until now it seems pretty good, but I don’t know how to send a message from the server to an specific client, something like this: client.send(message, receiverSessionId) But neither the .send() nor the .broadcast() methods seem to supply my need. What I have found as a possible solution, … Read more

Difference between socket and websocket?

I’m building web app that needs to communicate with another application using socket connections. This is new territory for me, so want to be sure that sockets are different than websockets. It seems like they’re only conceptually similar. Asking because initially I’d planned on using Django as the foundation for my project, but in the … Read more

WebRTC vs Websockets: If WebRTC can do Video, Audio, and Data, why do I need Websockets? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago. Improve this question So I’m looking to build a chat app that will allow video, audio, and text. … Read more