SignalR or NodeJS / Socket.IO?

I want to develop a real time application with C # and MVC3. I used Socket.IO in several projects, but now I see good news about SignalR, and some guys say that SignalR can be a good alternative for Socket.IO ...

I want to know if there are any problems or errors with SingalR and is this a good choice for moving from Socket.IO to SignalR?

Thanks in advance

+5
source share
1 answer

The advantage of using SignalR in your case is a complete client and server solution with JS on the client and ASP.NET on the back panel.

But you can see their some open problems: https://github.com/SignalR/SignalR/issues

+2
source

All Articles