@mastashake08/quic-talk-client
v1.0.4-alpha
Published
A P2P WebRTC calling library that uses WebTransport at the signaling server.
Readme
QUIC Talk Client
A WebRTC calling package that uses WebTransport as the signaling server. Powered by PeerJS and QUIC Talk Server
Installation
Clone repository with Git:
npm install @mastashake08/quic-talk-clientUsage
Using QUIC Talk is very straight forward! Simply import and choose an ID if you desire else one will be assigned for you. You can optionally give the constructor a WebTransport URL by default it will use a free version I provide for the #HackerGang
import { QuckTalk } from '@mastashake08/quic-talk-client';
const qt = new QuicTalk()
// or
const qt = new QuicTalk({
id: 'my-custom-id',
serverUrl: 'my-custom-quic-talk-server-url'
})
