You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 23, 2022. It is now read-only.
This needs be explored to see if combining a use of import { isBrowser } from 'angular2-universal'; and implementing the .NET Core version of SignalR
Creating the connection is currently available with Javascript let connection = new signalR.HubConnection("http://domain.com", "formatType=json&format=text");
Angular Universal currently does not support use of jQuery since DOM objects do not exist on the server.
Angular Universal Issue #512 when resolved will solve this problem.
Furthermore, SignalR is dependent on jQuery for initializing a connection.
SignalR Issue #372
Luckily .NET Core's SignalR exists.
This needs be explored to see if combining a use of
import { isBrowser } from 'angular2-universal';
and implementing the .NET Core version of SignalRCreating the connection is currently available with Javascript
let connection = new signalR.HubConnection("http://domain.com", "formatType=json&format=text");
Typescript implementation is in development.
aspnet/SignalR issue #3
The text was updated successfully, but these errors were encountered: