Simple two-player game built with React
!
-
If you don't have
Node.js
on your PC, install it here (use version 20.18.0 or above) -
Verify
node
version
node -v // Should print "v20.18.0" or above.
- Verify
npm
version
npm -v // Should print "10.9.0" or above.
git clone https://github.com/PikuzaMarie/tic-tac-toe-game.git
cd tic-tac-toe-game
npm install
It will automatically run in your default browser at http://localhost:3000/
npm run dev
- Game logic adhering to game rules
- Track in-game moves with Log component
- Display winner's name or a draw message using the Game Over component
- Customize game settings via gameConfig
- Clean code with the use of
ESLint
,Prettier
&lint-staged
- Deploy on Netlify so you can play the game
This project was developed using materials from the'React - The Complete Guide 2025'
instructed by Maximilian Schwarzmüller
at Academind
: link to github repo