Description of Sudoku from Wikipedia:
Sudoku is a logic-based, combinatorial number-placement puzzle. The objective is to fill a 9×9 grid with digits so that each column, each row, and each of the nine 3×3 subgrids that compose the grid contains all of the digits from 1 to 9.
Clone repository:
git clone https://github.com/remarkablegames/sudoku.git
Install dependencies:
cd sudoku
npm install
Run development server:
npm start
You should be able to view the game at http://localhost:3000.
Release will do the following:
- bump package version
- generate changelog
- commit and tag the changes
npm run release
git push --follow-tags
Deploy to GitHub Pages:
npm run deploy