signalr-asp-net
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

signalr-asp-net

SignalR JS Client with shimmed jQuery not polluting global namespace

This package is built on signalr-no-jquery to add support for SignalR together with a hosted Azure SignalR Service.

jQuery shim borrowed from react-native-signalR

This version of signalR client doesn't add jQuery to window object but imports jQueryShim locally to signalR and exports hubConnection. jQueryShim file contains only bare-minimum of jQuery to make signalR client run.

This package is not for use with ASP.NET Core version of SignalR.

This version currently matches version 2.4.1 of SignalR/SignalR and works together with a hosted Azure SignalR Service and a local SignalR.

Usage

npm i -D signalr-asp-net

ES6 Loader

import { hubConnection } from 'signalr-asp-net';

HTML

Use just like regular signalR but without $ namespace.

const connection = hubConnection('http://[address]:[port]', options);
const hubProxy = connection.createHubProxy('hubNameString');

// set up event listeners i.e. for incoming "message" event
hubProxy.on('message', function(message) {
    console.log(message);
});

// connect
connection.start({ jsonp: true })
.done(function(){ console.log('Now connected, connection ID=' + connection.id); })
.fail(function(){ console.log('Could not connect'); });

Integration with typescript

If you are working with typescript, the package contains types.

Just add at the beginning of TypeScript file:

import { connection } from 'signalr-asp-net';

Then you can use the connection as you would have before without $.

    const signalrConnection = hubConnection();
    const hub = signalrConnection.createHubProxy('hubName');
    hub.on('eventName', (): void => {
        // handle your event here
    });
    signalrConnection.start().done(() => {
        // do some initialization once you know the connection has been started
        // For instance, call a method on the server
        hub.invoke('serverMethod', someArgument);
    });

Update 4/01/2017: accessing global settings like through former $.connection

Note: This is an object holding global settings and it's not the same as connection handle returned by hubConnection

import { connection } from 'signalr-asp-net';

Problems

Feel free to create pull requests and raise issues https://github.com/erzki/signalr-asp-net/issues

Readme

Keywords

Package Sidebar

Install

npm i signalr-asp-net

Weekly Downloads

57

Version

1.0.3

License

Apache-2.0

Unpacked Size

968 kB

Total Files

16

Last publish

Collaborators

  • erzki