🎮 Checkers board game built using TypeScript.
Checkers board game built using html, css and typeScript.
Live version can be found at //https://play-checkers.netlify.app/.
Recently I began learning typeScript and I find the best way to learn is by building so I decided to build the checkers board game from scratch. This project would also require a lot of DOM manipulation, conditionals and many other core javaScript features that I could refine in the process.
Begin by cloning the repo to your machine and installing the app dependencies using:
npm install
Then to run the app in development, use the command:
npm run start
This will open the app for you using webpack dev server to localhost:5500
with hot reloading enabled. To build a dist
folder for production, run the command:
npm run build
To run tests on the app using jest and testing-library use the command:
npm run test