https://github.com/krshanto/ticto
A Tic Tac Toe game
https://github.com/krshanto/ticto
javascript-game nextjs tic-tac-toe typescript
Last synced: 2 months ago
JSON representation
A Tic Tac Toe game
- Host: GitHub
- URL: https://github.com/krshanto/ticto
- Owner: KRShanto
- License: mit
- Created: 2022-11-12T02:11:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-28T09:38:09.000Z (over 3 years ago)
- Last Synced: 2024-10-04T16:22:02.011Z (over 1 year ago)
- Topics: javascript-game, nextjs, tic-tac-toe, typescript
- Language: TypeScript
- Homepage: https://ticto.vercel.app/
- Size: 212 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TicTo
A simple offline TicTacToe game written in Next.js and Typescript.
You can play it here: [https://ticto.vercel.app/](https://ticto.vercel.app/)

## Home page
The home page doesn't contain much, just a link to the game page.
## Game page
The game page contains the game itself. The game is played on a 3x3 grid. The game is played by two players, X and O. The first player to get 3 of their marks in a row (up, down, across, or diagonally) is the winner. When all 9 squares are full, and no player has 3 marks in a row, the game is a draw.
## History page
Here you can see the history of all the games played. The history is stored in the browser's local storage.
## License
The code is licensed under the MIT license. See the LICENSE file for more details.