Skip to content

Just a little help with Wordle. Basically a fast searchable dictionary CLI for 5 letter words.

Notifications You must be signed in to change notification settings

kyle-west/worder

Repository files navigation

worder CLI for querying the dictionary for 5 letter words

Install with npm

npm install -g kyle-west/worder

Say you got this far, and you want to see what your options are:

AUDIO|BOATS

At this point you could run worder for a little help. To say I want a word where the second and third letters are "OA" that contains a "T" and an "S", but no "U", "D", "I", or "B" you could use this command:

worder search _OA__ --yes TS --no UDIB

Which would give you this as output to help you guess the word:

[
  'coast', 'coats',
  'goats', 'hoast',
  'moats', 'roast',
  'toast'
]

Complete worder search API

Usage: worder search [options] [pattern]

List all the words that match with the given pattern

Arguments:
  pattern                           String Pattern. Examples: "T__ST" or a RegExp

Options:
  -y, --yes <characters>            what characters SHOULD appear in the word?
  -n, --no <characters>             what characters should NOT appear in the word?
  -s, --startsWith <wordBeginning>  what characters does the word start with?
  -e, --endsWith <wordEnding>       what characters does the word end with?
  -h, --help                        display help for command

About

Just a little help with Wordle. Basically a fast searchable dictionary CLI for 5 letter words.

Topics

Resources

Stars

Watchers

Forks