Sudokuhall is a web app made with React where is possible play online sudoku puzzles with six levels of difficulty.
This project is a personal challenge that I am developing while still learning the basics of front-end development, more specific the React JavaScript library.
- ReactJS
- Vite
- React Router
- styled-components
- Zustand (state management library)
- Clone the project
-
git clone https://github.com/erarich/react_sudokuhall.git
- Enter the directory project
-
cd react_sudokuhall
- Install all dependencies
-
npm install
Scripts
- Start dev server
npm run dev
- Build for production
npm run build
- Locally preview production build
npm run preview
- Start server
npm run serve
Unlicense/Public Domain. You can use app this as you wish.
Sudokuhall utilizes a third party library to generate and solve the sudoku puzzles: SudokuToolCollection. So, if you use this app, you must include the licenses below.
Copyright (c) 2014 Rob McGuire-Dale Copyright (c) 2020 Markus Flür
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- ImKennyYip/Sudoku - for the basic tutorial with vanilla JavaScript.
- lacrioque/sudoku.js - for the sudoku generator library.
- robatron/sudoku.js - also for the sudoku generator library.