Assembly Endgame is a Hangman-style word guessing game built with React.
I made this project during my first week learning React to practice hooks, state management, and component interactions. 🚀
It’s a fun way to see how dynamic UIs update in real-time and how game logic can be handled with React.
- A random word is selected at the start of the game.
- Click letters on the on-screen keyboard to guess them.
- Correct guesses reveal letters in the word.
- Wrong guesses cost a “language life.”
- Win by guessing the word before running out of lives.
- Click New Game to start over.
- 🎯 Interactive letter keyboard
- 💀 Lives system shown as “languages”
- 🎉 Confetti animation on win
- 🔄 Replay anytime with New Game
- 🖥️ Real-time letter reveal and wrong guess tracking
- React (useState, useEffect hooks)
- Vite (fast dev environment)
- CSS / clsx for styling and dynamic classes
- react-confetti for win effects