Socket
Socket
Sign inDemoInstall

@cojam/signalr-no-jquery

Package Overview
Dependencies
5
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @cojam/signalr-no-jquery

JavaScript SignalR client without jQuery dependency


Version published
Maintainers
1
Install size
1.37 MB
Created

Readme

Source

signalr-no-jquery

SignalR JS Client with shimmed jQuery not polluting global namespace

Forked from DVLP/signalr-no-jquery.

TypeScript typings was taken from DefinitelyTyped repo.

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 @cojam/signalr-no-jquery
ES6 Loader
import { hubConnection } from '@cojam/signalr-no-jquery';

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/cojamru/signalr-no-jquery/issues

Keywords

FAQs

Last updated on 04 Jan 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc