A CLI for finding available package names in the npm registry.
Inspired/forked from english-words-that-are-not-yet-npm-packages by zeke.
This is a command line tool, so it should be installed globally:
yarn global add german-words-that-are-not-yet-npm-packages
This thing prints all available words to stdout, one word per line:
german-words-that-are-not-yet-npm-packages | grep käse | tail -n 6
# weißkäse
# weißschimmelkäse
# weißschimmelkäses
# zentralkäserei
# zentralkäsereien
# ziegenkäse
german-words-that-are-not-yet-npm-packages | wc -l
# 1670187
For context, you can also install the two datasets depended on by this package:
yarn global 'add all-the-german-words'
woerter | wc -l
# 1648437
yarn global add all-the-package-names
all-the-package-names | wc -l
# 416043
The all-the-package-names module is updated daily by a bot. To be sure you're getting up-to-date results, all you have to do is reinstall this package:
yarn global add german-words-that-are-not-yet-npm-packages
MIT