This is a simple sudoku game built with Solid and TypeScript. I've named it Solidoku for obvious reasons.
The game is playable here using github pages.
I love solving sudoku puzzles and play it on my phone. My daughter challenged me to make my own version so I did. I used the opportunity to learn Solid.
To get started, clone the repository and install the dependencies:
$ cd solidoku
$ pnpm install # or npm install or yarn install
Run the game locally in dev mode:
$ pnpm dev # or pnpm start or npm start etc.
Go to http://localhost:3000/solidoku/ to view it in the browser.
- Playable classic sudoku game (9x9)
- Different difficulty levels
- Resumable game state (local, no server)
- KBD navigation (arrow keys)
- Timer
- Settings (dark mode, maximum mistakes, etc.)
- My daughter being interested in coding, maybe? 😅