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

t9n-cli

v0.1.4

Published

T9N Translation CLI Tool

Readme

t9n-cli

AI 驱动的 JSON 翻译命令行工具,懂代码,更懂你。

核心特性

  • 变量保护 (Variable Guard):自动识别并保护 {name}%s{{count}} 等代码变量,确保翻译后变量不损坏。
  • 语境感知 (Context Aware):支持提供翻译背景描述(如:这是一个金融应用),让 AI 翻译语境更精准。
  • 增量更新 (Diff Mode):仅翻译缺失或已修改的 Key,极大节省 AI 消耗和处理时间。
  • 代码扫描 (Scanner):自动扫描源代码中的 t()dict.key 调用,找出尚未录入字典的文案。
  • 多语言支持:全面支持 23 种以上主流语言的并发翻译。

安装

npm install -g t9n-cli

快速上手

  1. 初始化项目配置:
    t9n init
  2. 身份认证 (从 t9n.dev/settings 获取 API Key):
    t9n auth <your-api-key>
  3. 翻译单个文件
    t9n translate en.json -t zh-CN,ja,fr
  4. 增量更新文件夹
    t9n diff ./locales -s en -t zh-CN,ja
  5. 扫描代码缺失 Key
    t9n scan ./src -d ./locales/en.json

命令列表

  • auth [key]:配置 API Key。
  • init:在当前目录初始化 t9n.config.json
  • translate <files...>:翻译指定的 JSON 文件。
  • diff <folder>:对整个文件夹下的语言包进行增量对比并更新。
  • scan [folder]:扫描代码中未在字典中定义的翻译 Key。
  • status:查看当前账户套餐级别和剩余额度。

开源协议

MIT