Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladimirfomene/tic-tac-toe
Node.js Implementation of the famous tic tac toe game
https://github.com/vladimirfomene/tic-tac-toe
Last synced: 8 days ago
JSON representation
Node.js Implementation of the famous tic tac toe game
- Host: GitHub
- URL: https://github.com/vladimirfomene/tic-tac-toe
- Owner: vladimirfomene
- Created: 2020-02-02T15:44:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T06:18:28.000Z (almost 2 years ago)
- Last Synced: 2023-04-04T23:24:32.713Z (over 1 year ago)
- Language: JavaScript
- Size: 996 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tic Tac Toe
This is a Tic Tac Toe game where a human plays with an AI. The AI uses the minimax algorithm to take the most optimal move at each point in the game.# Prerequisites
Software you need to install to play this game
- [Node.js and NPM (Node Package Manager)](https://nodejs.org/en/download/)# How to setup the project
- Clone this repository with the following `git clone [email protected]:vladimirfomene/tic-tac-toe.git`
- Execute `npm install` on your commandline to install all dependencies.
- Execute `npm run test` on your commandline to test the project.
- Execute `npm run play` on your commandline to start the game.