Home
request websocket connection from client
JavaScript
library: web platform
library part: WebSocket
const
websocket =
new
WebSocket(
"ws://localhost:8080/ws"
); websocket.send(
"hello from client"
);