Small Wordle helper writen in ReactJS.
$ npm install
$ npm start
Access the app via the browser at http://localhost:3000.
Enter the word(s) you entered in Wordle, then set the individual characters to gray/yellow/green with the mouse. Choose "Propose word" to get the highest-ranked proposal based on the words entered so far.
As input, only the list of possible Wordle solutions is used (taken from https://raw.githubusercontent.com/tabatkins/wordle-list/main/words). These entries are matched against an extract from the Google One Trillion Word Project, provided by Peter Norvig at https://norvig.com/ngrams, to determine their relative frequency (more frequent words are proposed first).
If either of these files change, you can create a new wordle_frequency.txt file by running python3 tooling/prepare_frequency_file.py
.
MIT License, see here.