npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

another-wordle-solver

v1.1.0

Published

A very simple word enumerator

Downloads

21

Readme

Another Wordle Solver

A simple word enumerator for wordle game. Its not using regular expressions just for fun! :D

NPM package

This package is available on npm. To install it you can use the following command.

npm i another-wordle-solver

How to run

Just run the following command.

npx another-wordle-solver

Features

  • Wildcard pattern
  • Known characters with unknown position
  • Deleted characters
  • Save to file or print in console

Application flow

In this package there are some questions which will be asked in order to help proceed the flow.

1

Enter word letter count - useful when there is no pattern: (default is 5)

Simply set the character count of your desired word. In case of classic wordle you can pass this question without answer. To do this simply press Enter.

2

Enter known letters - leave empty for non (For example if last three letter are known in "HELLO" word. You can use the following pattern **LLO):

Enter your word pattern with wildcard pattern used. The example is shown on the question itself.

3

Is there any known characters which you do not know the exact places (yes/no - default is no)?

If there is any letter that your know is present in your word but you do not aware of the exact place of it, enter yes, otherwise no

4

Enter characters comma seperated (like A, B, C):

If your answer to the previous question is yes, you need to enter letters in comma seperated fashion. This helps the algorithm to limit the possible words which will be shown to you.

5

Is there any known characters which are deleted? (yes/no - default is no)?

If there is any deleted character in your game say yes.

6

Enter characters that are deleted, comma seperated (like A, B, C):

Enter the deleted characters here.

7

Write results to file in home directory? (yes/no - default is no)?

Say yes to this question if you want to save results in a text file. This should be useful when there are a lot of possible words. To say no to this question you can simply press Enter.

How it words

This npm package uses a simple pattern and enumerates all meaningful words to be seen by user and help he/she quess the correct word.

Only you need to follow some questions which will be asked and enter requested info.

This solvers also takes known characters which their locations are not known yet into account.

DISCLAIMER

This package has been developed as a hobby and for fun. I DO NOT recommend using any tool like this to solve games.