server-websocket
Installation
SKILL.md
Steedos Server WebSocket | Steedos 服务端 WebSocket
Overview | 概述
Steedos Server uses Socket.IO via @nestjs/websockets for real-time communication. The AppGateway handles connections, authentication, room subscriptions, and event broadcasting.
Steedos 服务端使用 Socket.IO 进行实时通信。AppGateway 处理连接、认证、房间订阅和事件广播。
Gateway Configuration | 网关配置
@WebSocketGateway({ path: "/socket.io/", cors: true })
export class AppGateway implements OnGatewayConnection, OnGatewayDisconnect
- Path:
/socket.io/ - CORS: Enabled for all origins
- Adapter:
HybridAdapterfrom@builder6/core
Related skills