dev-multiplayer-colyseus-server
Facilitates the setup of a Colyseus multiplayer server with room handlers and lifecycle events for real-time gaming experiences.
Install this skill
Security score
The dev-multiplayer-colyseus-server skill was audited on Feb 9, 2026 and we found 10 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 55 | console.log(`Colyseus server listening on wss://localhost:${port}`); |
Template literal with variable interpolation in command context
| 69 | console.log(`[GameRoom] Created: ${this.roomId}`); |
Template literal with variable interpolation in command context
| 104 | console.log(`[GameRoom] Disposed: ${this.roomId}`); |
Template literal with variable interpolation in command context
| 237 | console.log(`[Room ${this.roomId}] Created with options:`, options); |
Template literal with variable interpolation in command context
| 247 | console.log(`[Room ${this.roomId}] Client joined: ${client.sessionId}`); |
Template literal with variable interpolation in command context
| 259 | console.log(`[Room ${this.roomId}] Client left: ${client.sessionId} (consented: ${consented})`); |
Template literal with variable interpolation in command context
| 266 | console.log(`[Room ${this.roomId}] Disposed`); |
Template literal with variable interpolation in command context
| 298 | console.log(`Unhandled message: ${type}`, data); |
Access to .env file
| 29 | const port = Number(process.env.PORT) || 2567; |
Access to .env file
| 161 | if (process.env.NODE_ENV !== 'production') { |