Small project to play tic tac toe game versus IA. There are two difficulties: the easy one (random moves) and the impossible one 😈
Clone the repository:
git clone https://github.com/sergiovp/tic-tac-toe.git
Go to root folder:
cd tic-tac-toe
Install Dependencies:
npm i
Run both, client and server:
npm run dev
Note 1️⃣: You can run both separately:
cd server && npm i && npm run dev
cd client && npm i && npm run dev
Note 2️⃣: There are sample environment files and you have the option of creating your own files to change ports, urls, etc.
Important note❗: To run the server, MongoDB must be installed locally. By default, the DB name will be tictactoe.
npm run test
- Back:
- Node
- Express
- MongoDB
- Front:
- React
- Next