realtime-systems
Installation
SKILL.md
Real-time Systems
Overview
Building real-time applications with WebSocket, Server-Sent Events, and event-driven architectures.
WebSocket
Server Implementation (Node.js)
import { WebSocketServer, WebSocket } from 'ws';
import { createServer } from 'http';
import { v4 as uuid } from 'uuid';
const server = createServer();
const wss = new WebSocketServer({ server });
Related skills
More from miles990/claude-software-skills
devops-cicd
CI/CD pipelines, infrastructure as code, and deployment strategies
414code-quality
Clean code principles, SOLID, and code review practices
410game-development
Game development patterns, architectures, and best practices
281e-commerce
E-commerce platforms, payment processing, and shopping cart patterns
252saas-platforms
SaaS architecture, multi-tenancy, and subscription management
237project-management
Agile methodologies, issue tracking, and team collaboration tools
229