
PodRocket The browser APIs you're shipping libraries to replace with Kilian Valkhof
Apr 2, 2026
Kilian Valkhof, founder of Polypane and frontend tooling expert, champions using built-in browser features for real problems. He explores the Intl API, locale-aware date and currency formatting, the Segmenter and Collator APIs. Short, practical talks highlight how modern browser primitives can replace heavy npm libraries and simplify internationalization.
AI Snips
Chapters
Transcript
Episode notes
Intl Is A Built-In Locale Aware Formatter
- The Intl API is fundamentally a large locale-aware string formatting library built into browsers.
- It converts raw data like dates and numbers into user-friendly strings for the user's locale without extra downloads.
Thousands Of Locales Ship With Browsers
- Modern browsers include thousands of locales so Intl supports locale-specific formatting out of the box.
- Kilian notes a baseline of ~7,000 locale combinations (language+country) are available in evergreen browsers.
Stop Shipping Format Logic Use Intl For Presentation
- Avoid shipping heavy date/currency formatting libraries when Intl can format strings client-side with no extra download cost.
- Use Intl for presentation and keep business logic (date math) in your existing libraries if needed.

