Letterdle is a non-commercial, educational project created for demonstrative purposes only. This implementation is:
- Not affiliated with the original Wordle (owned by The New York Times Company)
- Not monetized or used for profit
- Not intended for commercial distribution
- Built purely for learning web development concepts
- Classic Wordle-style gameplay
- 6 attempts to guess a 5-letter word
- Color feedback system:
- Green: Correct letter in correct position
- Yellow: Correct letter in wrong position
- Gray: Letter not in word
- Virtual and physical keyboard support
- Intended for desktop
- Guess the 5-letter word in 6 tries
- Type your guess using keyboard input
- Submit with Enter/Return key
- Colors will show how close your guess was
- Win by guessing correctly or start a new game
- Modern web browser (Chrome, Firefox, Safari)
- Python 3.x (for local server)
-
Clone/Download Repository
git clone https://github.com/your-username/letterdle.git cd letterdle
-
Set Up Local Server (Python 3)
# For Linux/macOS python3 -m http.server 8000 # For Windows py -m http.server 8000
-
Access Game
Open browser and visit http://localhost:8000
-
File Structure
Ensure file directory contains:
- index.html
- words.txt
- styles.css (optional if using separate CSS)
To modify the word list:
- Edit words.txt file
- Add one 5-letter word per line
- Save and refresh browser
- Frontend: Vanilla JavaScript
- No backend/server storage
- All processing happens client-side
- Word list loaded locally from words.txt
MIT License - Free for personal/educational use. Commercial use prohibited. Original Wordle concept © The New York Times Company.
Inspired by Josh Wardle's Wordle
Developed for educational purposes
Dictionary from SGB Words (sample words)