This is the Wordle Game, built with React, ContextAPI, ReactHooks and hosted on Netlify.
Feel free to edit the code to make your own version and add features.
Guess the WORDLE in six tries. Each guess must be a valid five-letter word. Hit the enter button to submit. After each guess, the color of the tiles will change to show how close your guess was to the word.
The letter W is in the word and in the correct spot.
The letter I is in the word but in the wrong spot.
The letter U is not in the word in any spot.
Since this project was built with React, the first thing you'll need is a Code Editor.
- Make sure you have Node.js installed in your computer, and run:
yarn create react-app
- Then, clone the repository and change into the working directory:
git clone https://github.com/pedro-areal-torres/Wordle-Game
cd Wordle-Game
- Install all the necessary dependencies:
yarn install
- Start the development server with:
yarn start
Your site is now running at http://localhost:3000
!
- Finally, if you want to build the application, use:
yarn build
If you are unfamiliar with React, follow their in-depth tutorial for creating a new React App.