Skip to content

davicorreiajr/checkers-game

Repository files navigation

Checkers Game

This is a very simple implementation of the famous Checkers game, using Javascript, HTML and CSS without any framework. This project, however, uses Bootstrap (for the board grid) and a very, very basic config of Webpack to generate a single JS file. The rules for this game was based on this page and you can check the result here.


Running the app locally

  • First, clone this repo:
$ git clone https://github.com/davicorreiajr/checkers-game.git
$ cd checkers-game
  • Ensure you are using the Node version specified in .nvmrc and package.json:
$ nvm install
$ nvm use
  • For this project, I used Yarn:
$ npm install -g yarn@`node -pe "require('./package.json').engines.yarn"`
  • Then, install the dependencies:
$ yarn
  • Finally, run the app:
$ yarn start

Troubles & sugestions

Please, if you find any problem or have some sugestion, don't hesitate to open an issue or even a pull request.