Mostly vibe coded for educational purposes
Some simple browser games, implemented in vanilla HTML/CSS/JS - no build step, no framework.
Live: https://taihen.org/games/
ES modules need HTTP (not file://), so serve the folder:
python3 -m http.server
# open http://localhost:8000-
Create a folder
mygame/with its ownindex.html+ JS. -
Link back to the menu with
<a href="../">← All games</a>. -
Add one entry to
games.js:{ id: "mygame", title: "My Game", desc: "…", icon: "🎯", path: "mygame/" }