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

@ngx-runtime-i18n/core

v2.0.0

Published

Runtime i18n core with ICU-lite formatting

Readme

@ngx-runtime-i18n/core

Framework‑agnostic primitives for runtime internationalisation:

  • Tiny, dependency‑free ICU‑lite formatter (interpolation + basic plural).
  • Shared types used by the Angular wrapper.

This package is designed to be used directly or via @ngx-runtime-i18n/angular.


Install

npm i @ngx-runtime-i18n/core

Quick Start

import { formatIcu, type Catalog } from '@ngx-runtime-i18n/core';

const catalog: Catalog = {
  hello: { user: 'Hello, {name}!' },
  cart: { items: '{count, plural, one {1 item} other {# items}}' },
};

formatIcu('en', 'hello.user', catalog, { name: 'Ashwin' }); // "Hello, Ashwin!"
formatIcu('en', 'cart.items', catalog, { count: 2 }); // "2 items"
  • key supports dotted paths (e.g., hello.user).
  • plural supports one, other, and exact matches like =0, =2.
  • The function is pure and side‑effect free.

API

formatIcu(lang, key, catalog, params?, onMissingKey?)

  • lang: string — current language (for plural rules and future features).
  • key: string — dotted path into the catalog.
  • catalog: Catalog — a nested object of strings/objects.
  • params?: Record<string, unknown> — interpolation values.
  • onMissingKey?: (key: string) => string — transform for missing keys (defaults to returning the key).

Types

  • CatalogRecord<string, unknown> (nested object).
  • RuntimeI18nConfig — shape shared with the Angular wrapper for consistency.

Catalog structure

{
  "hello": { "user": "Hello, {name}!" },
  "cart": { "items": "{count, plural, one {1 item} other {# items}}" }
}

Keep catalogs per language (e.g., en.json, hi.json).


Pitfalls & Notes

  • Not a full ICU implementation; aims to cover common 80% with a tiny footprint.
  • If you need Angular binding or SSR helpers, prefer @ngx-runtime-i18n/angular.
  • Keep your catalogs flat-ish and predictable to avoid fragile deep paths.

ICU-lite support

Supported

  • Basic {param} interpolation (tokens may include dots and hyphens for nested data).
  • plural blocks with one, other, and =n selectors plus # replacement.
  • Nested placeholders inside plural option bodies (balanced braces are retained).

Not supported

  • select or other ICU argument types beyond plural.
  • Full ICU-style escaping, quoting, or nested plural/select grammar.
  • Plural blocks inside other plural blocks (depth beyond one level is skipped).
  • Escaping braces beyond the literals above; unmatched braces must not resemble valid tokens.

License

MIT