This project is a Wordle clone built using React and Vite, aiming to recreate the popular word-guessing game Wordle.
https://gagan20-vis.github.io/Wordle-Clone/
This repository contains the source code for a Wordle clone developed with React and Vite. Wordle is a game where players guess a hidden word and receive feedback on their guesses.
- Guessing: Users can make guesses for the hidden word by inputting letters.
- Feedback: Immediate feedback on guesses, indicating correct letters in the correct position, correct letters in the wrong position, or incorrect letters.
- Score Tracking: Track the number of attempts taken to guess the word.
- Clone this repository to your local machine.
git clone https://github.com/your-username/react-wordle-clone.git
- Navigate into the project directory.
cd react-wordle-clone
- Install dependencies.
npm install
- Start the development server.
npm run dev
- Open your browser and visit
http://localhost:3000
to play the Wordle clone.
Contributions are welcome! If you'd like to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature/improvement
). - Make your changes.
- Commit your changes (
git commit -am 'Add feature/improvement'
). - Push to the branch (
git push origin feature/improvement
). - Create a new Pull Request.