A simple implementation of the classic game Tic Tac Toe using React.
This project is a web-based Tic Tac Toe game built with React. It allows two players to take turns marking spaces on a 3x3 grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row wins the game.
Make sure you have Node.js and npm installed on your machine.
git clone https://github.com/ashish11chawda/tic-tac-toe.git
cd tic-tac-toe
npm install
To run both the React app and the development server concurrently in a development environment, you can use the following command:
npm start
This command will start both the React app and the development server, allowing you to view the Tic Tac Toe game by visiting http://localhost:3000 in your web browser.
Alternatively, if you prefer to start them separately:
To launch the React app, navigate to the client directory and run the following commands:
cd client
npm start
This will start the react app, and you can view the Tic Tac Toe game by visiting http://localhost:3000 in your web browser.
cd server
npm start
This will start the development server on http://localhost:3001.
- Open the game in your browser, and open another instance of the game in a separate incognito/private window or browser.
- Two players take turns clicking on empty spaces to place their X or O.
- The game announces the winner or declares a draw when the board is full.
This project is licensed under the MIT License - see the LICENSE file for details.