https://github.com/mikebild/react-tic-tac-toe
Tic Tac Toe in React with Minimax-AI
https://github.com/mikebild/react-tic-tac-toe
Last synced: over 1 year ago
JSON representation
Tic Tac Toe in React with Minimax-AI
- Host: GitHub
- URL: https://github.com/mikebild/react-tic-tac-toe
- Owner: MikeBild
- Created: 2016-10-06T19:33:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-08-08T10:50:07.000Z (almost 9 years ago)
- Last Synced: 2025-02-14T02:47:02.758Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://tic-tac-toe.services.dropstack.run
- Size: 52.7 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tic Tac Toe
> an implementation of non-recursive [minimax alpha-beta pruning](https://en.wikipedia.org/wiki/Alpha%E2%80%93beta_pruning) inspirated by [Carsten Koenig](https://github.com/CarstenKoenig) awesome [Othello Game in Elm](https://github.com/CarstenKoenig/ElmOthello). Thank you Carsten!
__[Live Demo](http://tic-tac-toe.cloud.dropstack.run)__
[](https://deploy.cloud.dropstack.run?repo=https://github.com/MikeBild/react-tic-tac-toe)
## Setup
```bash
npm install
```
## Dev
```bash
npm start
```
__open [http://localhost:3000](http://localhost:3000)__
## Build
```bash
npm run build
```
## Deploy to [https://dropstack.run](https://dropstack.run)
```bash
npm run deploy
```