VVordle is a Wordle clone built with Vue, Vite, and TypeScript.
VVordle uses the original list of words before The New York Times Company purchased Wordle.
- Guess the VVORDLE 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.
- Green means the letter is in the correct spot.
- Yellow means the letter is in the word but in the wrong spot.
- Gray means the letter is not in the word in any spot.
Instructions to run the project locally are below.
- Clone the repository:
# HTTPS
git clone https://github.com/DevlinRocha/vvordle.git
# or
# SSH
git clone git@github.com:DevlinRocha/vvordle.git
- Go into the directory and install modules:
cd vvordle/
npm install
# or
yarn install
- Run the development server:
npm run dev
# or
yarn dev
- Open http://localhost:5173 with your browser.