This is a react implementation of Connect 4 game. To learn more about the game, visit - https://www.mathsisfun.com/games/connect4.html
You can view the live project here - https://stairwell-connect4.surge.sh/
This app is built using Create React App boilterplate with Typescript and uses Tailwind CSS for styling.
To develop the app locally, clone the repository. Then in the project root directory, do the following -
- Install dependencies by running
yarn
ornpm install
- Start the development server by running
yarn start
ornpm run start
- Visit
http://localhost:3000
We use surge.sh to deploy the project.
- Build the product using
yarn build
ornpm run build
- Run deployment using
yarn deploy
ornpm run deploy