_Prtcl provider for notification service
npm install @uprtcl/socket-providerThis node package includes basic _Prtcl provider wrappers around socket.io.
Visit our documentation site.
``bash`
npm install @uprtcl/socket-provider
Import the appropriate connection you would like to use, and make a new instance of it by passing its configuration:
`ts
import { SocketConnection } from '@uprtcl/socket-provider';
const socketConnection = new SocketConnection({
// domain: domain,
});
await socket.ready();
``