This web application is a version of Wordle owned by the New York Times. A user has 6 chances to guess a five letter mystery word. For each guess, each letter in the guess has a status that related to its correctness:
- If the letter is not in the word, it shows up gray
- If the letter is in the word, but in the wrong location, it shows up yellow
- If the letter is in the word AND in the correct location, it shows up green
If the correct word is SNAKE and the user enters SANDY as the guess:
- The 'D' and 'Y' are both not in the word
- The 'A' and 'N' are in the word but in the wrong spot
- The 'S' is in the correct space
How to get nodejs/npm --> On Ubuntu
- Clone the repository on your own device
git clone https://github.com/dsudit01/EC327Project.git- Install All Dependencies from package.json
npm install- Run react-scripts start
npm start- If browser does not open automatically, site is running on:
http://localhost:3000/
- Install WebStorm editor to add changes to the code in a user-friendly UI that understand javascript code language
- David Sudit (Project Lead)
- Jonas Escobar (Specification Lead)
- Ryan Duffy (Interface Lead)
- Yixiu Zhu (Documentation Lead)
- Mariah Mansoor (Technical Lead)

