amo-ws-client
v1.0.1
Published
A WebSocket client for connecting to a specific WebSocket server.
Downloads
2
Readme
WSS Client
A WebSocket client for connecting to a specific WebSocket server.
Usage
import { createWSSClient } from 'amo-ws-client';
const client = createWSSClient({ room: 'room_tt', appId: 'app09', key: 'keyrndmagtn', onMessage: (e) => { console.log(e) }, }).then((client) => { client.send({ hello: 'hello2' }); });