Tryied to recreat of a popular online word game, Wordle:
In Wordle, users have 6 attempts to guess a 5-letter word. You're helped along the way by ruling out letters that aren't in the word, and being told whether the correct letters are in the correct location or not.
The user wins the game when their guessed word is identical to the answer
. They lose the game if they submit 6 guesses without winning.
- Clone the repository.
- Run
npm install
to install the dependencies. - Navigate to the project directory with
cd project-wordle
. - Run
npm run dev
. - The server will start at
localhost:1234
.