Turn raw values — numbers, amounts, dates, codes — into the polished text your users actually read. Effortlessly: no formatting code to write, no duplication to maintain.
Your app stores machine values — a number, a timestamp, a country code. Your users want to read them the way their part of the world writes them. Cosmo does that conversion in a single call, so you stop scattering ad-hoc formatting logic across your codebase and delete the near-duplicate code that collects around it. It's dead simple, production-ready, and fast.
You don't need a multi-language app to benefit — point Cosmo at a single region and everything just comes out right. The same one line already scales to every language, script, calendar and time zone if you ever grow, with no data to ship or maintain.
┌─ iphone.json ───────────────────┐ ┌─ locale ──────────────────┐
│ { │ │ │
│ "model": "iPhone 17 Pro", │ │ en_US · en_GB · pt_BR │
│ "price": 999, │ │ zh_CN · ar_SA · hi_IN │
│ "speed": 2000, │ │ │
│ "pixels": 1234567, │ └─────────────┬─────────────┘
│ "cameras": 3, │ │
│ "released": "2025-09-19" │ │
│ } │ │
└────────────────┬────────────────┘ │
└─────────────────┬──────────────────┘
▼
┌───────────┐
│ Cosmo │
└─────┬─────┘
▼
🇺🇸 United States ─► September 19, 2025 · $999.00 · 2,000 MB/s · 1,234,567 · 3 cameras
🇬🇧 United Kingdom ─► 19 September 2025 · £999.00 · 2,000 MB/s · 1,234,567 · 3 cameras
🇧🇷 Brazil ─► 19 de setembro de 2025 · R$ 999,00 · 2.000 MB/s · 1.234.567 · 3 câmeras
🇨🇳 China ─► 2025年9月19日 · ¥999.00 · 2,000 MB/秒 · 1,234,567 · 3 个摄像头
🇸🇦 Saudi Arabia ─► ٢٧ ربيع الأول ١٤٤٧ هـ · ٩٩٩٫٠٠ ر.س. · ٢٬٠٠٠ م.ب/ث · ١٬٢٣٤٬٥٦٧ · ٣ كاميرات
🇮🇳 India ─► 19 सितंबर 2025 · ₹999.00 · 2,000 MB/से॰ · 12,34,567 · 3 कैमरे
You pass a locale code; Cosmo decides the rest. There's no currency in the data, yet
each region gets its own ($ / £ / R$ / ¥ / ر.س / ₹). The thousands separator
follows local habit — even India's 12,34,567 grouping — Saudi Arabia switches to the
Hijri calendar and right-to-left Arabic-Indic digits, and the camera count takes the
correct plural form. All automatically.
Cosmo is implemented consistently across five languages — the same concepts, method names and behaviour: JavaScript · Python (docs) · Java (docs) · .NET / C# · PHP (docs).
📖 Full documentation, API reference and live playground: https://cosmo.miloun.com/?lang=js
duration()), or any modern browsernpm install @miloun/cosmo
import { Cosmo, cosmo } from "@miloun/cosmo";
new Cosmo("es_ES").money(11000.4, "EUR"); // "11.000,40 €"
new Cosmo("tr").unit("temperature", "celsius", 26, "short"); // "26 °C"
new Cosmo("en").percentage(0.2); // "20%"
new Cosmo("fa").language("en"); // "انگلیسی"
// or the helper
cosmo("en_AU").country(); // "Australia"
Cosmo is built around the locale — a short language-and-region tag like en_US,
de_DE or fa_IR that picks all of these conventions at once. Everything it produces
is locale-aware and read straight from the engine's own Unicode/CLDR
data, so coverage is complete and always current — no locale tables of your own to
bundle or keep up to date. Underscore locales (en_AU) and BCP-47 Unicode
extensions (fa-IR-u-nu-latn-ca-buddhist)
are both accepted.
1.2M), scientific, and number/money ranges."3 days ago")."A, B, and C" conjunctions and disjunctions.plural, selectordinal, select).See the full API reference for every method,
the platform notes for what Intl does and
doesn't expose to JavaScript, and resources for ICU/CLDR references.
Recoverable problems throw CosmoError, with InvalidArgumentError and
UnsupportedError subclasses — an invalid currency in strict mode, an unsupported
unit, an unsupported symbol name, a malformed message, and the like.
MIT © Aiden Adrian