Frontend Clone of a Wordle Game Web Application
DemoVideo.mp4
- Size of each solution word = 5
- Total chances for each solution word = 6
- Color coding of guessed characters: a. Green -- correct character at correct position b. Yellow -- correct character but not at correct position c. Grey -- wrong character i.e., not present in the word at all
- WIN: word is guessed correctly before chances are over LOOSE: word is not guessed correctly before all chances are over
- Result modal box appears on displaying WIN or LOOSE
- A new solution word is expected on every tab refresh
- Characters can be entered from system keyboard only
- Press 'Enter' to check if the guessed word is correct or not for each guess
Solution words data: Location --> data/db.json (Host the json file locally before fetching data from it: Run following command on terminal from project folder: >> json-server data/db.json --port [any free port no., ex: 8000] )
-
HTML, CSS, Javascript, React, JSON, WebAPI
-
Hooks used: useState, useEffect, useWordle -->(custom hook)