Skip to main content

WebSocket

Construction

new WebSocket(url);
const socket = new WebSocket("wss://example.com");

Methods

send

Send data with Buffer

send(data);

recv

Receive data to a buffer

recv();