Try it out at https://ncpleslie.github.io/wordle-clone/
Because I like the game and wanted to keep playing.
- You can change the word length. From 4 to 10 characters.
- You can even add a new language.
To run this application, follow the commands found in package.json
.
npm run dev
npm run build
config.json
can be found in ./src/utils/
. From where you can alter the word length and the amount of attempts you can have.
You'll need to find a dictionary for your language. Follow the structure of the dictionary.json
file found in ./src/utils
The keyboard can be updated in the same directory as dictionary.json
. This is located in keyboard.json
.
I know. I've deliberately over-engineered this to leverage as many of the features of React as a possible. This is all about learning. Consider this an enterprise-level implementation of Wordle. Perhaps you could use this as the base for your next application?