websocket-realtime
Installation
SKILL.md
WebSocket and Real-Time Communication
Build production-ready WebSocket servers with reconnection, heartbeat, authentication, and horizontal scaling.
WebSocket Server (Node.js ws)
BAD: No connection lifecycle management.
import WebSocket, { WebSocketServer } from 'ws';
const wss = new WebSocketServer({ port: 8080 });