Fork of github.com/TomPlanche/wordle_helper
  • Rust 60.2%
  • Svelte 27.4%
  • SCSS 5.6%
  • TypeScript 3.1%
  • JavaScript 2.8%
  • Other 0.9%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-07-23 22:48:40 +02:00
src [15] (feat on main) Remove the word from the list when clicked + better deletion logic 2025-07-23 22:48:40 +02:00
src-tauri [10] (chore on main) Nb of tries adjusted. 2025-04-22 07:19:31 +02:00
static [1] (feat on HEAD) Initial commit. 2025-04-19 01:21:49 +02:00
.gitignore [11] (feat on main) Added Possible matches count + removed unknown state for a letter 2025-07-12 19:09:46 +02:00
biome.json [5] (feat on main) Front OK + small back changes 2025-04-19 05:05:07 +02:00
LICENSE [7] (feat on main) Add license file + small syntax fixes. 2025-04-19 05:33:46 +02:00
package.json [5] (feat on main) Front OK + small back changes 2025-04-19 05:05:07 +02:00
pnpm-workspace.yaml [5] (feat on main) Front OK + small back changes 2025-04-19 05:05:07 +02:00
README.md [12] (chore on main) Updated readmes 2025-07-14 09:57:30 +02:00
svelte.config.js [1] (feat on HEAD) Initial commit. 2025-04-19 01:21:49 +02:00
TECH.md [12] (chore on main) Updated readmes 2025-07-14 09:57:30 +02:00
tsconfig.json [1] (feat on HEAD) Initial commit. 2025-04-19 01:21:49 +02:00
vite.config.js [1] (feat on HEAD) Initial commit. 2025-04-19 01:21:49 +02:00

🎮 Wordle Helper

A modern desktop application to help you solve Wordle puzzles. Enter your guesses and get suggestions for your next move!

Features

  • 🔍 Get suggestions for your next Wordle guess
  • 🎯 Input your current guesses with color coding
  • 🔄 Toggle letter states (correct, misplaced, absent) with a simple click
  • 📊 See all possible matching words based on your current knowledge
  • 🖥️ Cross-platform desktop app (Windows, macOS, Linux)

🛠️ Technologies

  • Tauri: Creating efficient, secure, and cross-platform desktop apps
  • SvelteKit: Frontend framework
  • TypeScript: Type-safe JavaScript
  • Rust: Backend logic and word filtering
  • Biome: Code formatting and linting

Note

See the TECH.md for more details on the technologies and the implementation details.

🚀 Installation

Prerequisites

Setup

  1. Clone the repository:

    git clone https://github.com/yourusername/wordle-helper.git
    cd wordle-helper
    
  2. Install dependencies:

    pnpm install
    
  3. Run in development mode:

    pnpm tauri dev
    
  4. Build for production:

    pnpm tauri build
    

📖 How to Use

  1. Enter Your Guesses: Type your Wordle guesses in the input fields.

  2. Set Letter States: Click on a letter to cycle through states:

    • Absent (Grey): Letter is not in the word
    • Misplaced (Yellow): Letter is in the word but in the wrong position
    • Correct (Green): Letter is in the correct position
  3. Add More Guesses: Click "Add Guess" to input additional guesses (up to 4).

  4. Get Suggestions: Click "Search" to see possible matching words based on your guesses.

  5. Review Results: The app will show you all possible words that match your constraints, along with the total count.