Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/remarkablegames/sudoku
🧩 Sudoku is a logic-based, combinatorial number-placement puzzle
https://github.com/remarkablegames/sudoku
game javascript preact puzzle remarkablegames sudoku
Last synced: 3 months ago
JSON representation
🧩 Sudoku is a logic-based, combinatorial number-placement puzzle
- Host: GitHub
- URL: https://github.com/remarkablegames/sudoku
- Owner: remarkablegames
- License: mit
- Created: 2018-03-04T05:05:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-28T04:46:57.000Z (7 months ago)
- Last Synced: 2024-06-28T05:41:38.013Z (7 months ago)
- Topics: game, javascript, preact, puzzle, remarkablegames, sudoku
- Language: JavaScript
- Homepage: https://remarkablegames.org/sudoku
- Size: 649 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# [sudoku](https://remarkablegames.org/sudoku/)
Description of Sudoku from [Wikipedia](https://wikipedia.org/wiki/Sudoku):
> 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.[Play game.](https://remarkablegames.org/sudoku/)
## Prerequisites
* [Node.js](https://nodejs.org)
## Install
Clone repository:
```sh
git clone https://github.com/remarkablegames/sudoku.git
```Install dependencies:
```sh
cd sudoku
npm install
```## Run
Run development server:
```sh
npm start
```You should be able to view the game at http://localhost:3000.
## Release
Release will do the following:
* bump package version
* generate changelog
* commit and tag the changes```sh
npm run release
git push --follow-tags
```## Deploy
Deploy to [GitHub Pages](https://pages.github.com):
```sh
npm run deploy
```## License
[MIT](LICENSE)