Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)