A lightweight React SPA that lets you play an enhanced Tic-Tac-Toe game with “Overwrite” power-ups. The app consumes a REST API (/game
, see .src/api/gameApi.js
).
⚠️ Status: InactiveThis application is currently not live. The deployment has been taken down, so there is no public URL available at the moment. You can still clone the repository and run it locally for learning purposes.
This project was bootstrapped with Create React App.
- Install dependencies
npm install
- Start development server (auto-reloads on save)
npm start
The app runs on http://localhost:3000
.
- Run unit tests (watch mode)
npm test
- Build for production
npm run build
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
- React 19 + React-Scripts 5
- Axios — REST communication
- Testing Library + Jest — unit tests
src/
├─ api/ # REST API helpers
├─ components/ # Reusable UI components (Board, Cell)
├─ pages/ # Page-level components (GamePage)
└─ constants/ # Shared constants