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

@onex2/js2json

v1.0.0

Published

将 locale 目录下的多语种 JS 文件转为 JSON,支持按 key 排序与格式化

Downloads

6

Readme

@onex2/js2json

locale 目录下的多语种 JS 文件转为 JSON,支持按 key 首字母排序与格式化。

使用

项目根目录执行(会以当前目录为基准扫描):

npx @onex2/js2json
  • 自动扫描:先看项目根下的 locale/locales/;若没有,则递归查找项目内任意位置的 locale/locales 目录(跳过 node_modules.git),再递归遍历其中的 .js 并生成同名 .json
  • 自定义配置:若存在 .vscode/settings.json,可配置 localeJs2json.files(指定文件列表)或 localeJs2json.localeDir(指定 locale 目录路径,可不放在项目根)。

通过 .vscode/settings.json 指定文件或目录

在项目根目录的 .vscode/settings.json 中可配置:

方式一:指定要转换的文件列表

{
  "localeJs2json.files": [
    "locale/en-US.js",
    "locale/zh-CN.js"
  ]
}

方式二:指定 locale 目录路径(可不放在根目录)

{
  "localeJs2json.localeDir": "src/locale"
}
  • 配置 localeJs2json.files 时,只转换列出的文件。
  • 配置 localeJs2json.localeDir 时,递归扫描该目录下所有 .js(路径相对项目根,如 src/localepackages/app/locales)。
  • 都未配置时,默认先找项目根下的 locale/locales/;若没有,则自动查找项目内任意层级的 locale/locales 目录并扫描。

项目结构示例

locale 在根目录时:

你的项目/
├── .vscode/
│   └── settings.json   (可选)
├── locale/
│   ├── en-US.js
│   └── zh-CN.js
└── ...

locale 不在根目录时,在 .vscode/settings.json 中配置 "localeJs2json.localeDir": "src/locale" 即可:

你的项目/
├── .vscode/
│   └── settings.json   (配置 localeJs2json.localeDir)
├── src/
│   └── locale/
│       ├── en-US.js
│       └── zh-CN.js
└── ...

运行 npx @onex2/js2json 后:

你的项目/
├── locale/
│   ├── en-US.js
│   ├── en-US.json
│   ├── zh-CN.js
│   └── zh-CN.json
└── ...

语种 JS 格式

语种文件需为 ES 模块,并 export default 一个对象,例如:

// locale/zh-CN.js
export default {
  common: { ok: "确定", cancel: "取消" },
  home: { title: "首页" },
};

发布到 npm

  1. npm 登录:npm login
  2. package.json 中的 repository.url 改为你的仓库地址
  3. 发布:npm publish

发布后即可在任意项目根目录执行 npx @onex2/js2json 使用。