@flipdish/signalr-no-jquery
TypeScript icon, indicating that this package has built-in type declarations

1.0.22 • Public • Published

signalr-no-jquery

Original version

Original (https://github.com/dvlp/signalr-no-jquery)

SignalR JS Client with shimmed jQuery not polluting global namespace

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 meant to be used with ASP.NET Core version of SignalR

Usage

npm i -D signalr-no-jquery

ES6 Loader

import { hubConnection } from '@flipdish/signalr-no-jquery';

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'); });

Problems

Feel free to create pull requests and raise issues https://github.com/DVLP/signalr-no-jquery/issues

Readme

Keywords

Package Sidebar

Install

npm i @flipdish/signalr-no-jquery

Weekly Downloads

138

Version

1.0.22

License

Apache-2.0

Unpacked Size

144 kB

Total Files

9

Last publish

Collaborators

  • mrinalmech
  • blaawolf
  • alainjacomet