websocket-implementation

Installation
SKILL.md

WebSocket Implementation

Build scalable real-time communication systems with proper connection management.

Server Implementation (Socket.IO)

const { Server } = require('socket.io');
const { createAdapter } = require('@socket.io/redis-adapter');
const { createClient } = require('redis');

const io = new Server(server, {
  cors: { origin: process.env.CLIENT_URL, credentials: true }
});
Installs
272
GitHub Stars
174
First Seen
Jan 24, 2026
websocket-implementation — secondsky/claude-skills