Skip to content

Open source Wordle clone built with Vue, TypeScript, and Vite

Notifications You must be signed in to change notification settings

DevlinRocha/vvordle

Repository files navigation

VVordle

VVordle is a Wordle clone built with Vue, Vite, and TypeScript.

Try a live demo here! 👈

Instructions

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.

Getting Started

Instructions to run the project locally are below.

  1. Clone the repository:
# HTTPS
git clone https://github.com/DevlinRocha/vvordle.git

# or

# SSH
git clone [email protected]:DevlinRocha/vvordle.git
  1. Go into the directory and install modules:
cd vvordle/

npm install

# or

yarn install
  1. Run the development server:
npm run dev

# or

yarn dev
  1. Open http://localhost:5173 with your browser.

Development