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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@whisperlab/lingo.dev

v0.92.15

Published

Lingo.dev CLI

Readme

Lingo.dev is a community-driven, open-source CLI for AI-powered web and mobile app localization.

Lingo.dev is designed to produce authentic translations instantly, eliminating manual work and management overhead. As a result, teams do accurate localization 100x faster, shipping features to more happy users worldwide. It can be used with your own LLM or with Lingo.dev-managed Localization Engine.

Little-known fact: Lingo.dev began as a small project at a student hackathon back in 2023! Many iterations later, we got accepted into Y Combinator in 2024, and we're now hiring! Interested in building the next-gen localization tools? Send your CV to [email protected]! 🚀

📑 In This Guide

💫 Quickstart

Lingo.dev CLI is designed to work with both your own LLM, and Lingo.dev-managed Localization Engine built on top of latest SOTA (state-of-the-art) LLMs.

Using Your Own LLM (BYOK or Bring Your Own Key)

  1. Create an i18n.json configuration file:
{
  "version": 1.5,
  "provider": {
    "id": "anthropic",
    "model": "claude-3-7-sonnet-latest",
    "prompt": "You're translating text from {source} to {target}."
  },
  "locale": {
    "source": "en",
    "targets": ["es", "fr", "de"]
  }
}
  1. Set your API key as an environment variable:
export ANTHROPIC_API_KEY=your_anthropic_api_key
# or for OpenAI
export OPENAI_API_KEY=your_openai_api_key
  1. Run the localization:
npx lingo.dev@latest i18n

Using Lingo.dev Cloud

Oftentimes, production-grade apps require features like translation memory, glossary support, and localization quality assurance. Also, sometimes, you want an expert to decide for you which LLM provider and model to use, and to update the model automatically when new ones are released. Lingo.dev is a managed Localization Engine that provides these features:

  1. Create an i18n.json configuration file (without provider node):
{
  "version": 1.5,
  "locale": {
    "source": "en",
    "targets": ["es", "fr", "de"]
  }
}
  1. Authenticate with Lingo.dev:
npx lingo.dev@latest auth --login
  1. Run localization:
npx lingo.dev@latest i18n

📖 Documentation

For detailed guides and API references, visit the documentation.

🔒 Caching with i18n.lock

Lingo.dev uses an i18n.lock file to track content checksums, ensuring only changed text gets translated. This improves:

  • ⚡️ Speed: Skip already translated content
  • 🔄 Consistency: Prevent unnecessary retranslations
  • 💰 Cost: No billing for repeated translations

🤖 GitHub Action

Lingo.dev offers a GitHub Action to automate localization in your CI/CD pipeline. Here's a basic setup:

- uses: lingodotdev/lingo.dev@main
  with:
    api-key: ${{ secrets.LINGODOTDEV_API_KEY }}

This action runs lingo.dev i18n on every push, keeping your translations up-to-date automatically.

For pull request mode and other configuration options, visit our GitHub Action documentation.

⚡️ Lingo.dev's Superpowers

  • 🔥 Instant integration: Works with your codebase in minutes
  • 🔄 CI/CD Automation: Set it and forget it
  • 🌍 Global reach: Ship to users everywhere
  • 🧠 AI-powered: Uses latest language models for natural translations
  • 📊 Format-agnostic: JSON, YAML, CSV, Markdown, Android, iOS, and many more
  • 🔍 Clean diffs: Preserves your file structure exactly
  • ⚡️ Lightning-fast: Translations in seconds, not days
  • 🔄 Always synced: Automatically updates when content changes
  • 🌟 Human quality: Translations that don't sound robotic
  • 👨‍💻 Built by devs, for devs: We use it ourselves daily
  • 📈 Grows with you: From side project to enterprise scale

🤝 Contribute

Lingo.dev is community-driven, so we welcome all contributions!

Have an idea for a new feature? Create a GitHub issue!

Want to contribute? Create a pull request!

🌐 Readme in other languages

Don't see your language? Just add a new language code to the i18n.json file and open a PR!