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

anyplural

v2.0.1

Published

Micro smart pluralizer — pick the plural form and interpolate the count in any Intl locale, one function.

Readme


One export. Correct plurals. Any locale. Zero dependencies.

Intl.PluralRules knows which form a count needs in every locale. anyplural picks it, formats the count with Intl.NumberFormat, and stitches them together — no rule tables, no locale files, no config.

import { anyplural } from "anyplural";

anyplural(1, { one: "item", other: "items" });                                  // "1 item"
anyplural(5, { one: "item", other: "items" });                                  // "5 items"
anyplural(5, { one: "год", few: "года", many: "лет" }, { locale: "ru" });       // "5 лет"
anyplural(0, { zero: "нет писем", one: "письмо", many: "писем" });              // "нет писем"
anyplural(3, { one: "st", two: "nd", few: "rd", other: "th" }, { type: "ordinal" }); // "3rd"

install

npm install anyplural

usage

anyplural(count, forms);
anyplural(count, forms, options);

count is any finite number. forms maps plural categories to words.

anyplural(2, { one: "day", other: "days" });                              // "2 days"
anyplural(2, { one: "день", few: "дня", many: "дней" }, { locale: "ru" }); // "2 дня"

anyplural.parts() takes the same arguments and returns { type, value } parts instead of a string — style the number apart from the word. Number parts come straight from Intl.NumberFormat; the word is a trailing literal.

anyplural.parts(5, { one: "item", other: "items" }, { locale: "en" });
// [{ type: "integer", value: "5" }, { type: "literal", value: " items" }]

anyplural.parts(count, { one: "item", other: "items" }).map((p, i) =>
  p.type === "literal" ? p.value : <b key={i}>{p.value}</b>,
);

recipes

Copy, paste, move on.

// Item counter
anyplural(cart.length, { one: "item", other: "items" });
// "3 items"

// Localized "N years"
anyplural(age, { one: "год", few: "года", many: "лет" }, { locale: "ru" });
// "5 лет"

// Ranking / leaderboard position
anyplural(rank, { one: "st", two: "nd", few: "rd", other: "th" }, { type: "ordinal" });
// "1st"

// Empty state — the zero form replaces the whole output, number included
anyplural(count, { zero: "No messages", one: "message", other: "messages" });
// 0 → "No messages", 1 → "1 message", 9 → "9 messages"

// Big numbers, grouped
anyplural(inbox, { one: "email", other: "emails" }, { locale: "en" });
// "12,480 emails"

anyplural is pure and synchronous — no clock, no state — so it renders the same on server and client. Pass an explicit locale to keep it that way regardless of the runtime default.


categories

forms is keyed by the CLDR plural categories Intl.PluralRules returns: zero, one, two, few, many, other. Supply only the ones a locale uses — and remember the names are labels, not quantities: Russian resolves 21 and 31 to one, and 0 to many.

anyplural(count, { one: "item", other: "items" });                            // en
anyplural(count, { one: "год", few: "года", many: "лет" }, { locale: "ru" }); // ru

A category a locale asks for but your forms doesn't define falls down a chain to other, which is why other is the one worth always providing. A category that resolves to nothing throws a RangeError rather than rendering an empty word.

The full fallback chain and the zero form


options

| Option | Type | Default | Notes | | --- | --- | --- | --- | | locale | string \| string[] | runtime locale | BCP 47 tag or fallback array | | type | "cardinal" \| "ordinal" | "cardinal" | plural rule kind | | format | Intl.NumberFormatOptions | plain integer | how the count is formatted |

anyplural(1200, { one: "view", other: "views" }, {
  locale: "en",
  format: { notation: "compact" },
});
// "1.2K views"

What each option does, with examples


locales

Any valid BCP 47 tag, including regional variants and fallback arrays. When omitted, native Intl uses the runtime locale.

anyplural(2, { one: "день", few: "дня", many: "дней" }, { locale: "ru" }); // "2 дня"
anyplural(2, { one: "Tag", other: "Tage" }, { locale: "de" });             // "2 Tage"
anyplural(2, { one: "jour", other: "jours" }, { locale: "fr" });           // "2 jours"
anyplural(2, { one: "x", other: "y" }, { locale: ["sr-Latn-RS", "en"] });

The count is formatted in the same locale, so separators and digits follow it too — 1,500 in English, 1 500 in Russian, Eastern Arabic numerals in ar-EG.


vs the alternatives

| | anyplural | i18next | intl-messageformat | | --- | :---: | :---: | :---: | | gzip | < 1kb | ~14kb | ~30kb | | locale data bundled | no | yes | yes | | plural rules | native Intl | tables | native Intl | | dependencies | 0 | 1+ | 4+ |

anyplural is not a full i18n framework — it does one thing. Reach for i18next or ICU MessageFormat when you need message catalogs, interpolation grammars, or gender selects.


stability

anyplural follows semver. The public API is a single export — anyplural, with anyplural.parts on it — plus AnypluralOptions, Forms and the exported types. It only changes shape in a major release. New options arrive in minors; exact formatted numbers come from Intl and may vary between ICU versions, so never assert on them across environments.

migrating from 1.x

2.0 removed the separate anypluralParts export. It is the same function, now reached through the one name the package exports:

- import { anyplural, anypluralParts } from "anyplural";
+ import { anyplural } from "anyplural";

- anypluralParts(5, forms);
+ anyplural.parts(5, forms);

Arguments, return value and throwing behaviour are unchanged. Every any* package follows this shape from 2.0 on: the bare call does the job, everything else hangs off the same name.


compatibility

Node.js 18+ · Chrome 71+ · Firefox 65+ · Safari 14+ · Edge Runtime · Cloudflare Workers · Deno

CI runs the full suite on Node 20, 22 and 24.


the any family

anyplural is part of any family — tiny, zero-dependency wrappers over native Intl, one API per package.

| | | | | --- | --- | --- | | anywhen | dates & relative time | Intl.DateTimeFormat | | anyamount | numbers, currency, units | Intl.NumberFormat | | anymany | lists | Intl.ListFormat | | anyaround | names & flags | Intl.DisplayNames | | anylong | durations | Intl.DurationFormat | | anyplural | plurals | Intl.PluralRules | | anyword | words & graphemes | Intl.Segmenter |

Want all of them? anyfamily is one install for the lot, and anyfamily-react wraps each as a hook with a shared locale provider.

npm install anyfamily

MIT © kirilinsky