https://github.com/dolezvo1/wordsearchplus
Word Search Plus is a word search implementation with couple extra features.
https://github.com/dolezvo1/wordsearchplus
elm json wordsearch
Last synced: 3 months ago
JSON representation
Word Search Plus is a word search implementation with couple extra features.
- Host: GitHub
- URL: https://github.com/dolezvo1/wordsearchplus
- Owner: dolezvo1
- Created: 2025-05-05T07:05:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-24T10:23:54.000Z (about 1 year ago)
- Last Synced: 2025-08-22T15:31:18.808Z (11 months ago)
- Topics: elm, json, wordsearch
- Language: Elm
- Homepage:
- Size: 136 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Word Search Plus
Word Search Plus is a [word search](https://en.wikipedia.org/wiki/Word_search ) implementation with couple extra features.
* The boards can be randomly generated based on any appropriate JSON file (see the `extra/` directory for examples), both remote (by URL) and local.
* Definitions for every word
* Search by definitions or blind search, all with customizable probabilities
* Set specific word count, options to filter words by length.
Created as semestral project for the NI-AFP course ([syllabus in english](https://bk.fit.cvut.cz/en/predmety/00/00/00/00/00/00/06/15/75/p6157506.html ), [syllabus in czech](https://bk.fit.cvut.cz/cz/predmety/00/00/00/00/00/00/06/15/75/p6157506.html )).

### How to run
You don't have do download any code, you can simply navigate to its [GitHub Pages](https://dolezvo1.github.io/wordsearchplus/ ) in your browser.
Optionally, if you really want to, you can clone this repository, and then
```shell
# First run this:
npm install
# Then either:
npm run dev # <- this if you want a local development server, or
npm run build # <- this if you want a production build (will be located in `dist/`)
```