Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SignalR/SignalR
Incredibly simple real-time web for .NET
https://github.com/SignalR/SignalR
asp c-sharp signalr
Last synced: about 1 month ago
JSON representation
Incredibly simple real-time web for .NET
- Host: GitHub
- URL: https://github.com/SignalR/SignalR
- Owner: SignalR
- License: other
- Created: 2011-07-22T03:52:19.000Z (over 13 years ago)
- Default Branch: main
- Last Pushed: 2024-10-14T21:48:27.000Z (about 2 months ago)
- Last Synced: 2024-11-03T18:38:41.088Z (about 1 month ago)
- Topics: asp, c-sharp, signalr
- Language: C#
- Homepage: http://signalr.net
- Size: 42.6 MB
- Stars: 9,203
- Watchers: 637
- Forks: 2,282
- Open Issues: 55
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-reference-tools - Signal-R
README
# ASP.NET SignalR
**IMPORTANT**: There will be no new features added to this product. We are in maintenance mode and only fixing critical issues. See [our blog post](https://devblogs.microsoft.com/aspnet/the-future-of-asp-net-signalr/) for details.
This repository hosts code and project management for ASP.NET SignalR, for use in .NET Framework applications using System.Web or Katana. If you are looking for information on ASP.NET Core SignalR, see the https://github.com/aspnet/AspNetCore/tree/main/src/SignalR repository.ASP.NET SignalR is a 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.
## What can it be used for?
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.## Documentation
See the [documentation](https://docs.microsoft.com/aspnet/signalr/overview/getting-started/introduction-to-signalr)## Get it on NuGet!
Install-Package Microsoft.AspNet.SignalR
## Get a sample on NuGet, straight into your app!
Install-Package Microsoft.AspNet.SignalR.Sample
## LICENSE
[Apache 2.0 License](https://github.com/SignalR/SignalR/blob/main/LICENSE.txt)## Contributing
See the [contribution guidelines](https://github.com/SignalR/SignalR/blob/main/CONTRIBUTING.md)
## Building the source
```
git clone [email protected]:SignalR/SignalR.git (or https if you use https)
```### Windows
After cloning the repository, run `build.cmd`.**NOTE:** Opening the solution requires VS 2017.
## Questions?
* Ask on StackOverflow with the tag [signalr](https://stackoverflow.com/questions/tagged/signalr)
* Post an issue in the [Issue Tracker](https://github.com/SignalR/SignalR/issues)