ASP.NET SignalR is a new library for ASP.NET developers that makes it incredibly simple to add real-time web functionality to your applications. What is "real-time web" functionality? It's the ability to have your server-side code push content to the connected clients as it happens, in real-time.
Pushing data from the server to the client (not just browser clients) has always been a tough problem. SignalR makes it dead easy and handles all the heavy lifting for you.
See the documentation
Install-Package Microsoft.AspNet.SignalR
Install-Package Microsoft.AspNet.SignalR.Sample
See the contribution guidelines
git clone git@github.com:SignalR/SignalR.git (or https if you use https)
After cloning the repository, run build.cmd
.
NOTE: Opening the solution requires VS 2012.
After cloning the repository, run make
.
Open Microsoft.AspNet.SignalR.Mono.sln to do development.
We have a CI Server (http://ci.signalr.net/)