Table of Contents
This is a German implementation of the word game "Don't Wordle", a variation of "Wordle", where it is your goal to NOT find the daily solution.
You can play "wordle nicht!" on its Github Pages site.
To get a local copy up and running follow these simple steps.
This project runs on a node.js backend. If you haven't already, please install npm
to run it.
npm install npm@latest -g
- Clone the repo
git clone https://github.com/DRovara/wordle-nicht.git
- Install NPM packages
npm install
After completing these steps, the node server will be ready to be run locally.
You can run a development version of the project by running
npm run dev
Alternatively, you can build and run wordle nicht! using
npm run build
npm run start
After running the development or release version of wordle nicht!, you can access it through your browser on localhost:3000
.
In wordle nicht! it is your goal to enter six guess words consisting of five letters each without accidentally entering the secret solution word. However, there is a catch: After each guess, letters are marked to indicate their role in the result:
- green letters appear in the solution at exactly the same place.
- amber letters appear in the solution but at a different place.
- grey letters do not appear in the solution at all.
Once the game has informed you of the role of a letter, all further guesses you make must conform to these roles. For instance, if your guess contains the letter e on the fourth position and it is marked green, all further guesses must include an e on that position. On the other hand, if your guess contains the latter a on the second position and it is marked amber, all further guesses must include the letter a and you are no longer allowed to enter guesses with an a at position two.
In order to prevent unfortunate guesses that are very similar to the solution from ruining the game, you are allowed to undo five of your guesses each game using the "UPS" button. This allows you to provide other guesses, acting as if you had never entered the undone word.
Any contributions you make are appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.
Project Link: https://github.com/DRovara/wordle-nicht