UNPKG

node-datachannel

Version:

WebRTC For Node.js and Electron. libdatachannel node bindings.

38 lines (31 loc) 1.04 kB
import { EventEmitter } from 'events'; import nodeDataChannel from './node-datachannel'; import { WebSocketServerConfiguration } from './types'; import { WebSocket } from './websocket'; export class WebSocketServer extends EventEmitter { // eslint-disable-next-line @typescript-eslint/no-explicit-any #server: any; #clients: WebSocket[] = []; constructor(options: WebSocketServerConfiguration) { super(); this.#server = new nodeDataChannel.WebSocketServer(options); this.#server.onClient((client) => { this.emit('client', client); this.#clients.push(client); }); } port(): number { return this.#server?.port() || 0; } stop(): void { this.#clients.forEach((client) => { client?.close(); }); this.#server?.stop(); this.#server = null; this.removeAllListeners(); } onClient(cb: (clientSocket: WebSocket) => void): void { if (this.#server) this.on('client', cb); } }