An open API service indexing awesome lists of open source software.

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

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)__

[![Deploy to dropstack](https://deploy.cloud.dropstack.run/button.svg)](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
```