🎮 GitHub Game Service

Demo and testing interface for the GitHub game integration service

📦 Fetch Games from GitHub

Fetch HTML games from the kody-w/localFirstTools repository

📊 Statistics

0
Total Games
1
Local Games
0
Categories

🧱 Built-in Tetris Game

Demo of the embedded Tetris game included with the service

💾 Import & Export Games

Test the JSON import/export functionality

💻 Usage Examples

Fetch games from GitHub:

const games = await GitHubService.fetchGames();
console.log(`Loaded ${games.length} games`);

Get built-in Tetris:

const tetris = LocalGameService.getBuiltInTetris();
console.log(tetris.name); // "Tetris Classic"

Export all games:

const allGames = [...githubGames, ...localGames];
LocalGameService.exportAllGames(allGames);