I'm trying to use socket.io.js for the client to connect to a Jetty server with a Jetty WebSockets plugin. It appears that socket.io.js is specifically designed to be used only with a node.js implementation. Is it possible to configure socket.io.js with a server other than node?
Asked
Active
Viewed 4,559 times
1 Answers
4
There is a Java implementation of a socket.io backend.
Alternatively, you could take a look at SockJS, which is similar to socket.io, but is designed to support other backends than socket.io. Including a Java one.

igorw
- 27,759
- 5
- 78
- 90