Thousands of games were created during hackathons (Global Game Jam, Ludum Dare) and uploaded to GitHub. These are often weird, artistic, and innovative.
The beloved two-player puzzle platformer has been ported to HTML5. Perfect for a computer lab with two friends sharing a keyboard. You control FireBoy (WASD) and WaterGirl (Arrow keys) to solve elemental puzzles.
Example of editing save:
// Paste in console
let save = JSON.parse(localStorage.getItem('gameSave'));
save.coins = 99999;
localStorage.setItem('gameSave', JSON.stringify(save));
location.reload();
A brief 1-2 sentence overview of the game's concept and mechanics.
The DNA Splicer is a rare, limited-time power-up that allows players to instantly mutate their character into a specialized "Evolved Form" for 30 seconds. Instead of just getting bigger, the player changes shape and gains a specific advantage (and disadvantage). game github io
Technically a showcase for HTML5, BrowserQuest is a massively multiplayer online role-playing game (MMORPG) set in a retro fantasy world. You can see other players running around, fight slimes, and find treasure.
One of the most sophisticated games on the platform. It mimics the building mechanics of Fortnite and features real-time 1v1 duels. It is shocking how well optimized this is for a browser game. Thousands of games were created during hackathons (Global
Generally, yes, it is safer than 99% of the web. Because the code is static (no PHP, no databases), it is very hard for a hacker to inject malicious code into a GitHub Pages site. However, be wary of sites that ask you to "allow notifications" or download an "update." A real browser game never requires a download.