@portkey/socket

It is already possible to follow the standard abp tutorial to add SignalR to your application. However, Portkey provides SignalR integration packages those simplify the integration and usage.
Installation
Using NPM
npm install @portkey/socket
Using Yarn
yarn add @portkey/socket
Prerequisites
Package.json Scripts
clean | Uses rm to remove dist/ |
build | Uses tsc to build package and dependent packages |
lint | Uses eslint to lint package |
lint:fix | Uses eslint to check and fix any warnings |
format | Uses prettier to format the code |
Basic Usage
import { DIDSignalr } from '@portkey/socket'
const didSignalr = new DIDSignalr();
didSignalr.doOpen({ url: 'your did signalr url', clientId: 'your clientId' });
didSignalr.onScanLogin(({ body }) => console.log(body));