ms-signalr-client
Unofficial package for the SignalR JS Client
This is a package for Microsoft's ASP.NET SignalR JavaScript Library. Current packaged version is v2.2.2-pre.Usage
Include the library in your page using one of the following methods:ES6 Loader
``` import $ from 'jquery'; import 'ms-signalr-client'; ```require JS
``` require('jquery'); require('ms-signalr-client'); ```HTML
``` ``` Set up a connection to a signalR host, and Hub. Make sure you update the address, port, and hubname values to suit your environment. ``` var connection = $.hubConnection('http://address:port'); var proxy = connection.createHubProxy('hubname'); // receives broadcast messages from a hub function, called "broadcastMessage" proxy.on('broadcastMessage', function(message) {console.log(message);
});
// atempt connection, and handle errors
connection.start({ jsonp: true })
.done(function(){ console.log('Now connected, connection ID=' + connection.id); })
.fail(function(){ console.log('Could not connect'); });
}
```
Tests
To run tests, run the following command: ``` $ npm run test ``` Tests will be run using:- PhantomJS (headless browser)
- Mocha (test runner)
- Chai (assertion library)
Version numbering
The build number is a little ahead of the offical jquery.signalr repo. This is due to fixes to this package requiring a package version bump.Problems
If you have problems with this package, log them on the bug tracker. If you have issues with the jquery.signalr library, go to the SignalR bug tracker.Licence Information
As per the following:- All client code is Copyright (C) Microsoft Corporation. All rights reserved.