networking

Installation
SKILL.md

Game Networking

Implement real-time multiplayer networking with WebSocket, UDP, and latency optimization.

WebSocket Game Server

const WebSocket = require('ws');

class GameServer {
  constructor(port = 8080) {
    this.wss = new WebSocket.Server({ port });
    this.players = new Map();
    this.setupHandlers();
  }
Installs
2
GitHub Stars
1
First Seen
Feb 17, 2026
networking — pluginagentmarketplace/custom-plugin-server-side-game-dev