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

@another-art/i18n-checker

v0.0.2

Published

Scan i18n translation files for missing keys, extra keys, and placeholder mismatches

Downloads

423

Readme

i18n-checker

Scan i18n translation files for missing keys, extra keys, and placeholder mismatches. Zero dependencies.

Install

npm install @another-art/i18n-checker

CLI

npx @another-art/i18n-checker ./path/to/project

Starts a local server with an interactive UI showing all translation issues.

Options:

  • PORT env variable to set port (default: 3999, auto-increments if busy)
PORT=4000 npx @another-art/i18n-checker .

Library

import { scan, buildHtml } from '@another-art/i18n-checker';

const result = await scan('/path/to/project');

console.log(result.totalMissing);     // missing keys count
console.log(result.totalExtra);       // extra keys count
console.log(result.totalPlaceholder); // placeholder mismatch count

for (const dir of result.results) {
  console.log(dir.i18nPath, dir.issues.length);

  for (const issue of dir.issues) {
    console.log(`  [${issue.type}] ${issue.locale} — ${issue.key}`);
  }
}

// Generate HTML report
const html = buildHtml(result);

Supported formats

Folder formati18n/<locale>/index.json:

src/
  i18n/
    en/
      index.json    ← { "greeting": "Hello, {name}!" }
    ru/
      index.json    ← { "greeting": "Привет, {name}!" }

Flat format<locale>.json files in the same directory:

locales/
  en.json           ← { "save": "Save", "cancel": "Cancel" }
  ru.json           ← { "save": "Сохранить" }

Flat format is detected when a directory contains 2+ files matching <locale>.json (2-3 letter codes).

Detected issues

| Type | Description | |------|-------------| | missing | Key exists in reference locale but not in target | | extra | Key exists in target but not in reference locale | | placeholder_mismatch | Placeholders like {name} differ between locales |

Reference locale is en if present, otherwise the first locale alphabetically.

Types

interface ScanResult {
  root: string;
  results: CheckResult[];
  totalMissing: number;
  totalExtra: number;
  totalPlaceholder: number;
}

interface CheckResult {
  i18nPath: string;
  referenceLocale: string;
  allLocales: string[];
  totalKeys: number;
  issues: Issue[];
  translations: Record<string, Record<string, string>>;
}

interface Issue {
  locale: string;
  key: string;
  type: 'missing' | 'extra' | 'placeholder_mismatch';
  detail?: string;
  referenceValue?: string;
  localeValue?: string;
}

License

MIT