Heknon
Heknon

Reputation: 45

Is it possible to use socket.io without node.js?

The title pretty muchs sums it up... I am wondering if there is a way to use socket.io without node.js

Upvotes: 0

Views: 962

Answers (1)

jfriend00
jfriend00

Reputation: 707158

socket.io is a library that connects a browser web pages to some server somewhere. There MUST be a socket.io server somewhere that does what you want that you can connect to.

That socket.io server does not have to be written using node.js. There is socket.io support for other languages or environments. The protocol and data format is fully documented so implementations can be written for any environment. For example, here's a socket.io server implementation in C++.

You can look on github for various server implementations: https://github.com/search?q=socket.io+server.

Upvotes: 1

Related Questions