Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# alternative to socket.io for node.js [closed]

Tags:

c#

socket.io

Is there something like socket.io (node.js) for C# ? I need a server version of it.

Thanks for your help!

like image 448
Van Coding Avatar asked May 10 '11 14:05

Van Coding


1 Answers

SignalR

Async signaling library for .NET to help build real-time, multi-user interactive web applications.

https://github.com/SignalR/SignalR

You can see a live example of it in play here http://jabbr.net/

You will need IIS 8.0 to get web sockets, it uses long-polling on IIS 7.

I think they may be working on using https://github.com/davidfowl/Fleck and https://github.com/davidfowl/SignalR.Fleck to show how you can use Fleck web socket server with SignalR

like image 55
superlogical Avatar answered Oct 19 '22 23:10

superlogical