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 🙏

© 2026 – Pkg Stats / Ryan Hefner

bywords

v1.0.1

Published

Turn Claude Code's spinner words into language-learning flashcards.

Readme

bywords

Replace Claude Code's spinner words with vocabulary from a language you're learning.

Claude Code cycles through "thinking verbs" (Pondering…, Cogitating…, Ruminating…) while it works. Those words pass your eyes hundreds of times a day. bywords replaces them with words from a language you're learning — passive screen time becomes passive review.

Install

npm install -g bywords

Requires Node.js ≥ 20 and Claude Code.

Usage

bywords init    # pick a preset, translation language, and format → writes to settings.json
bywords list    # show available presets
bywords reset   # remove the spinnerVerbs block from settings.json

init is an interactive wizard:

Available presets:
  1) es-top30-verbs — 30 most frequent Spanish verbs
Pick a preset [1]:

Available translation languages:
  1) en
  2) ru
Pick a translation language [1]:

Display format:
  1) term — translation  (e.g. "hablar — to speak")
  2) translation — term  (e.g. "to speak — hablar")
  3) term only           (e.g. "hablar")
Pick a format [1]:

Write? [Y/n]:

The result is written to ~/.claude/settings.json under spinnerVerbs. Existing settings are never overwritten — only that key is touched. A one-time backup is created at settings.json.bak before the first write.

Restart Claude Code to see the new spinner words.

Presets

| ID | Language | Items | Translations | |----|----------|-------|--------------| | es-top30-verbs | Spanish | 30 | en, ru |

Contributing

Adding a preset

Create a JSON file in presets/ following this schema:

{
  "id": "fr-top30-verbs",
  "language": "fr",
  "name": "30 most frequent French verbs",
  "items": [
    { "term": "être", "translations": { "en": "to be", "ru": "быть" } }
  ]
}

id must be unique and match the filename. language is an ISO 639-1 code. Each item needs at least one translation key.

Running locally

git clone https://github.com/einperegrin/bywords
cd bywords
node src/cli.js list
node src/cli.js init

No build step, no dependencies to install.

License

MIT