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

myelino

v0.1.29

Published

**Translation infrastructure that sparks joy** ✨

Readme

Myelin · License: MIT

Translation infrastructure that sparks joy

Myelin seamlessly integrates localization into your development process, freeing you to prioritize building exceptional user experiences while minimizing time spent on translation tasks.

npx myelino --translate

Features

  • 🔒 Local First & Private
    Translation calls happen on your machine. We never send your data to third-party APIs or external databases.

  • 🌍 Open Source
    Every line of code is transparent and available on GitHub.

  • 🆓 Free Forever
    No hidden costs. Now and always.

  • 🤖 Multi-Model Support
    Choose from openai, deepseek, moonshot, qwen, or bring your own model.

  • 📚 First-Class i18n Library Support
    Works seamlessly with next-intl, react-intl, react-i18next, and more.

  • 🗂 Namespace Support
    Supports both namespaced and non-namespaced structures out of the box.

Quick Start

  1. Install Myelin
    Ensure Node.js (v18+) is installed, then run:

    npx myelino --init
  2. Configure
    Create myelin.config.json in your project root:

    {
      "aiProvider": "deepseek",
      "aiModel": "deepseek-chat",
      "locale": {
        "location": "locales",
        "sourceLanguage": "en",
        "targetLanguages": ["es", "fr", "zh", "zh-TW", "en-US"]
      }
    }
  3. Add API Key
    Create a .env file with your AI provider key:

    AI_API_KEY=sk-proj-your-api-key
  4. Translate!
    Run the translation command:

    npx myelino --translate

    Myelin scans your source locale file (e.g., locales/en.json), translates new/missing strings, and updates target files (e.g., locales/fr.json).

Configuration Guide

myelin.config.json

| Key | Description | Example | | ------------------------ | --------------------------- | ---------------------------- | | aiProvider | AI service provider | "openai", "deepseek" | | aiModel | Model ID for the provider | "deepseek-chat", "gpt-4" | | locale.location | Path to locale directory | "src/locales" | | locale.sourceLanguage | Base language (ISO 639-1) | "en" | | locale.targetLanguages | Languages to translate into | ["es", "zh-TW"] |

Supported Providers

  • OpenAI
  • DeepSeek
  • Moonshot
  • Qwen

Bring Your Own Model: Custom providers can be integrated via the open-source codebase.