All Projects → aspnet → Signalr

aspnet / Signalr

Licence: apache-2.0
[Archived] Incredibly simple real-time web for ASP.NET Core. Project moved to https://github.com/aspnet/AspNetCore

Programming Languages

C#
18002 projects
typescript
32286 projects
C++
36643 projects - #6 most used programming language
java
68154 projects - #9 most used programming language
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Signalr

Cronscheduler.aspnetcore
Cron Scheduler for AspNetCore 2.x/3.x or DotNetCore 2.x/3.x Self-hosted
Stars: ✭ 100 (-95.84%)
Mutual labels:  aspnet-product
Options
[Archived] A framework for accessing and configuring POCO settings. Project moved to https://github.com/aspnet/Extensions
Stars: ✭ 149 (-93.79%)
Mutual labels:  aspnet-product
Extensions
.NET APIs for commonly used programming patterns and utilities, such as dependency injection, logging, and configuration.
Stars: ✭ 2,188 (-8.87%)
Mutual labels:  aspnet-product
Staticfiles
[Archived] Middleware for handling requests for file system resources including files and directories. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 111 (-95.38%)
Mutual labels:  aspnet-product
Dataprotection
[Archived] Data Protection APIs for protecting and unprotecting data. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 128 (-94.67%)
Mutual labels:  aspnet-product
Universe
[Archived] Repo for building the entire ASP.NET and Entity Framework stack. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 160 (-93.34%)
Mutual labels:  aspnet-product
Musicstore
[Archived] MusicStore test application that uses ASP.NET/EF Core. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 1,331 (-44.56%)
Mutual labels:  aspnet-product
Jquery Validation Unobtrusive
Add-on to jQuery Validation to enable unobtrusive validation options in data-* attributes.
Stars: ✭ 207 (-91.38%)
Mutual labels:  aspnet-product
Iisintegration
[Archived] ASP.NET Core IIS integration. Project has moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 142 (-94.09%)
Mutual labels:  aspnet-product
Filesystem
[Archived] Abstraction of file system APIs. Project moved to https://github.com/aspnet/Extensions
Stars: ✭ 173 (-92.79%)
Mutual labels:  aspnet-product
Efcore
EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
Stars: ✭ 10,838 (+351.4%)
Mutual labels:  aspnet-product
Jquery Ajax Unobtrusive
[Maintenance mode: only security and critical bug fixes are being worked on] Add-on to jQuery Ajax to enable unobtrusive options in data-* attributes.
Stars: ✭ 128 (-94.67%)
Mutual labels:  aspnet-product
Identity
[Archived] ASP.NET Core Identity is the membership system for building ASP.NET Core web applications, including membership, login, and user data. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 1,953 (-18.66%)
Mutual labels:  aspnet-product
Httpsysserver
[Archived] A web server for ASP.NET Core based on the Windows Http Server API. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 106 (-95.59%)
Mutual labels:  aspnet-product
Metapackages
[Archived] NuGet meta packages. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 195 (-91.88%)
Mutual labels:  aspnet-product
Jsonpatch
[Archived] JSON PATCH library. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 100 (-95.84%)
Mutual labels:  aspnet-product
Localization
[Archived] Localization abstractions and implementations for ASP.NET Core applications. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 156 (-93.5%)
Mutual labels:  aspnet-product
Diagnostics
[Archived] Diagnostics middleware for reporting info and handling exceptions and errors in ASP.NET Core, and diagnosing Entity Framework Core migrations errors. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 213 (-91.13%)
Mutual labels:  aspnet-product
Templating
[Archived] ASP.NET Core templates for .NET CLI and Visual Studio. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 205 (-91.46%)
Mutual labels:  aspnet-product
Basicmiddleware
[Archived] Basic middleware components for ASP.NET Core. Project moved to https://github.com/aspnet/AspNetCore
Stars: ✭ 170 (-92.92%)
Mutual labels:  aspnet-product

ASP.NET Core SignalR [Archived]

This GitHub project has been archived. Ongoing development on this project can be found in https://github.com/aspnet/AspNetCore.

IMPORTANT: This repository hosts code and project management for ASP.NET Core SignalR, for use in ASP.NET Core applications using Microsoft.AspNetCore.App. If you are looking for information on ASP.NET SignalR (used in .NET Framework applications using System.Web and/or Katana), see the https://github.com/SignalR/SignalR repository.

ASP.NET Core SignalR is a new library for ASP.NET Core 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.

You can watch an introductory presentation here - ASP.NET Core SignalR: Build 2018

This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the Home repo.

Documentation

Documentation for ASP.NET Core SignalR can be found in the Real-time Apps section of the ASP.NET Core Documentation site.

TypeScript Version

If you are encountering TypeScript definition issues with SignalR, please ensure you are using the latest version of TypeScript to compile your application. If the issue occurs in the latest TypeScript, please let us know.

When in doubt, check the version of TypeScript referenced by our package.json file. That version is the minimum TypeScript version expected to work with SignalR.

Packages

You can install the latest released JavaScript client from npm with the following command:

npm install @aspnet/signalr

The @aspnet/signalr package (and it's dependencies) require NPM 5.6.0 or higher.

NOTE: Previous previews of the SignalR client library for JavaScript were named @aspnet/signalr-client. This has been deprecated as of Preview 1.

IMPORTANT: When using preview builds, you should always ensure you are using the same version of both the JavaScript client and the Server. The version numbers should align as they are produced in the same build process.

The CI build publishes the latest dev version of the JavaScript client to our dev npm registry as @aspnet/signalr. You can install the module as follows:

  • Create an .npmrc file with the following line: @aspnet:registry=https://dotnet.myget.org/f/aspnetcore-dev/npm/
  • Run: npm install @aspnet/signalr

Alternatively, if you don't want to create the .npmrc file run the following commands:

npm install @aspnet/signalr --registry https://dotnet.myget.org/f/aspnetcore-dev/npm/

We also have a MsgPack protocol library which is installed via:

npm install @aspnet/signalr-protocol-msgpack

Deploying

Once you've installed the NPM modules, they will be located in the node_modules/@aspnet/signalr and node_modules/@aspnet/signalr-protocol-msgpack folders. If you are building a NodeJS application or using an ECMAScript module loader/bundler (such as webpack), you can load them directly. If you are building a browser application without using a module bundler, you can find UMD-compatible bundles in the dist/browser folder; minified versions are provided as well. Simply copy these to your project as appropriate and use a build task to keep them up-to-date.

Building from source

To run a complete build on command line only, execute build.cmd or build.sh without arguments.

If this is your first time building SignalR please see the Getting Started for more information about project dependencies and other build-related information specific to SignalR.

See developer documentation for general information on building and contributing to this and other aspnet repositories.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].