What initially started off as yet another Wordle clone turned into a bit of a different game. Instead of having 24 hours to solve a 5 letter, 6 guess puzzle, you have 60 seconds. The goal is to get the highest streak of correct puzzle answers in a row before either getting one wrong or running out of time. the game resets every 60 seconds or when either the game is won or lost.
There are two (well three but the third sucks) options:
- On a laptop, desktop, or other device with a hardware keyboard, you can just use that
- On a phone, tablet, or other touchscreen device you can use the onscreen keyboard
- You can also click the onscreen keyboard with a mouse. This is very slow and makes the game tough. This method is not recommended.
As of now there are three options:
- The application is available at https://www.bendle.xyz. You can play it there.
- clone the repository
cd bendleinto the repository- run
npm installto install vite, tailwind, and other required dependencies - use
npm run devto run the game using an npm server then open it in a browser. It defaults tohttp://localhost:3000/as the location to go to
- clone the repository
cd bendleinto the repository- run
npm installto install vite, tailwind, and other required dependencies - use
npm run buildto do a proper build of the application. It will spit out a complete, minified application to the newly createddistdirectory. From there - use your favourite web server to run the newly created app using the contents of
distas your source.