Welcome to the react-tic-tac-toe project, a simple tic-tac-toe game built with React, TypeScript, Vite, and Tailwind CSS.
https://legendary-granita-dcd632.netlify.app
This project is a simple tic-tac-toe game that allows two players to play against each other. It was built using the React library for the frontend and TypeScript for type checking and improved code reliability. The project uses the Vite build tool for fast development and the Tailwind CSS framework for styling.
-
TypeScript: The project uses TypeScript for type checking and improved code reliability.
-
Vite: The project uses the Vite build tool for fast development and efficient bundling.
-
Tailwind CSS: The project uses the Tailwind CSS framework for styling, allowing for easy customization and a clean, minimalistic design.
To get started with react-tic-tac-toe, you will need to have the following prerequisites installed on your machine:
- Node.js
- npm or yarn
Once you have these prerequisites installed, you can follow the steps below to set up the project:
- Clone the repository to your local machine using
git clone https://github.com/odedmasala/react-tic-tac-toe.git
. - Navigate to the root directory of the project and install the dependencies using
npm install
oryarn install
. - Start the development server using
npm run dev
oryarn dev
. - The game should now be running on
http://localhost:3000
.
To build the project for production, run the following command:
npm run build
or
yarn build
This will create a production-ready build of the project in the dist
directory.