Krieger351 / wordle-bot

Bot for solving wordle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wordle-bot

JS Script for solving wordle

Usage

  1. Add the bookmarklet.
  2. Click the bookmarklet to load script.
  3. Click button in bottom right corner to get a word suggested to you.

Adding the bookmarklet

Drag & Drop

Drag and drop the following link to your bookmarks bar. Wordle Bot

DIY Bookmarklet

If you would like to create your own Bookmarklet, you can use the following javascript.

javascript: (async () => {
  if (document.getElementById("wordle-bot-script")) {
    return;
  }
  const script = document.createElement("script");
  script.src = "https://krieger351.github.io/wordle-bot/bundle.js";
  script.id = "wordle-bot-script";
  document.body.append(script);
})();

Running Locally

  1. Checkout Repository
  2. npm install
  3. generate ssl keys
  4. npm start
  5. Add local bookmarklet to browser
javascript: (async () => {
  if (document.getElementById("wordle-bot-script")) {
    return;
  }
  const script = document.createElement("script");
  script.src = "https://localhost:8080/bundle.js";
  script.id = "wordle-bot-script";
  document.body.append(script);
})();

About

Bot for solving wordle

License:MIT License


Languages

Language:TypeScript 50.6%Language:JavaScript 49.4%