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

i18readme

v1.0.1

Published

AI-powered README localization — translates and links README files across languages

Readme

English | Русский | Deutsch | Français | 中文 | 日本語

i18readme

Translate your README.md into any language with one command. Powered by Claude or GPT-4o.

The language bar above is injected automatically into every file. When your README changes, only the outdated translations are re-generated.


Install

npm install -g i18readme

Requires Node.js 18+.


Quick start

# 1. Go to your project
cd my-project

# 2. Set up — asks for languages, folder, AI provider, model, and API key
i18r init

# 3. Translate
i18r sync

That's it. Your translations will appear in i18readme/README.ru.md, i18readme/README.de.md, etc.


Commands

i18r init                          Set up the project (interactive)
i18r sync                          Translate missing and outdated files
i18r sync --force                  Re-translate everything
i18r sync --force ru,de            Re-translate specific languages only
i18r sync --provider <p>           Override provider for this run
i18r sync --model <m>              Override model for this run
i18r status                        Show what's up to date and what's not
i18r config                        Update provider, model, and API key
i18r config show                   Show saved config
i18r config set --provider <p> --key <k>   Save API key non-interactively

How it works

i18r init scans your project for README files, asks which languages to translate to, which AI provider and model to use, and saves your API key. Creates .i18readme.json:

{
    "langs": ["ru", "de", "zh"],
    "dir": "i18readme",
    "readmes": ["README.md"]
}

i18r sync compares a content hash of your README.md against the hash stored in each translation. If the content hasn't changed, the translation is skipped — even across git checkouts or file copies that would reset timestamps.

Each translated file gets a language switcher bar at the top linking to all other languages.


AI providers

| Provider | Default model | How to get a key | | ------------------ | -------------------------- | ------------------------------------------------------ | | Claude (default) | claude-haiku-4-5 (fast) | console.anthropic.com | | OpenAI | gpt-4o-mini (fast) | platform.openai.com |

You can select a more powerful model (Sonnet, Opus, GPT-4o) during i18r init or i18r config, or override it for a single run with --model.

The key is stored in ~/.i18readmerc on your machine — never in the project.


License

MIT