Create a game room, invite your friends, and enjoy a variety of fun multiplayer party games instantly!
Launch Game ClientExplore our collection of fun party games to play with friends:
For developers looking to integrate with our platform:
Connect to the real-time game server using Socket.IO:
// Connect to the server const socket = io(); // Join a game room socket.emit('joinRoom', { roomCode: 'ABCD', playerName: 'Player1', isHost: true }); // Listen for game events socket.on('gameStarted', (gameData) => { console.log('Game started!', gameData); });
Check out our documentation for more details on the Socket.IO events and API.