Wordle, but you have to solve more words if you guess wrong.
This project was inspired by a group chat where we shared our Wordle scores. One person found Dordle, then we came across Quordle, Octordle, Secdecdordle, and so on (including crazy ones like Kilordle).
Hmm, that’s a pattern.
I proposed the idea of something called 2nordle where the number of wordles you would have to solve was two to the power of your current streak—so the first one would be 20 words, the second 21 words, the third 22 words, and so on.
One weekend I banged out an initial prototype based on react-wordle and got it to work. I had to rewrite the internal representation of the solutions, but in general I love taking functions that work on one thing and making them work on several things. I added some ideas that I liked from other projects, like the responsive grid from Quordle that fits way more words on the screen. I also came up with a few new ideas on my own like using a grid selector so you could focus on one grid at a time, and an algorithm to deterministically select a random next word based on a starting seed word (so that everybody gets the same series of words in a day—but the order will be different each day). Also, initial performance was crazy slow so I had to memoize a lot of the app and optimize renders.
The project that I started from used a lot of “prop-drilling”, a term used by React devs to mean passing values through many children before reaching the intended target. In moderation—like how it was used in the original project—it was fine, keeping complexity low. In the larger, more generalized version that I made, the code quickly grew unmaintainable and bloated. I rewrote the base with a state management library which helped a lot (and also I got a chance to try out a shiny new library).
And… it wasn’t fun. The complexity just ballooned. Not only that—the first time you see it, it would just be exactly like Wordle. No hook to get people to say, let alone come back a second day to see how it really differed.
Back to the drawing board, though with a whole bunch of generalized algorithms.
What if, every time you got a word wrong, you had to solve another word? I quickly found out that if you had two unique words left to solve, there was no way you could catch back up. So then I made it so getting two words wrong would add a new word.
The application got renamed to Mordle, since it wasn’t really exponential anymore. While I learned a lot of things about optimizing renders and general app performance by having thousands of components on screen while debugging 2nordle, this new idea was way more fun.
Based on some user feedback I added a hard mode and a practice mode. I also learned that users don’t read instructions, especially if they’ve read similar instructions before. Very interesting lessons to learn.
Anyways, I learned a lot about state management, working with existing code, application profiling and performance, and how to iterate based on user feedback. This was a really fun project to work on.
You can play it here.