Best java server implementation for socket.io

java, socket.io

Solution

As author, I suggest to try my SocketIO server implementation on Java:

https://github.com/mrniko/netty-socketio

Stable and production ready lib.

Problem

I wanted to use socket.io to push data from server to browser but the project is java tomcat one, and there are many implementation in Github for the server implementation of `socket.io`. Most of them say they are deprecated or better ones are available.Can anyone suggest me a good implementation. And I see lot of demo and sample code about broadcasting with `socket.io`. My requirement is to push different messages to different clients. Could someone point me to some good demo or tutorial dealing with such stuff? Thanks

Original source

Related problems