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

@breadstone/ziegel-intl

v0.0.9

Published

Includes calendars and provider for speific cultures. (e.g. date time format info, number format info, region info)

Readme

@breadstone/ziegel-intl

MIT License TypeScript npm

Comprehensive internationalization (i18n) and globalization support for the ziegel framework. Provides cultures, calendars, regions, time zones, formatting, and localization for global applications.

Internationalization: Complete i18n solution with multi-calendar support, culture information, formatting, and globalization resources.

🚀 Overview

@breadstone/ziegel-intl provides:

  • Multi-Calendar Support: Gregorian, Hebrew, Hijri, Japanese, Korean, Persian, Thai Buddhist, Chinese Lunisolar, and more
  • Culture Information: Comprehensive culture and language data with formatting rules
  • Regional Data: Geographic and cultural region information
  • Time Zone Management: Time zone handling, conversion, and calculations
  • Formatting System: Date/time and number formatting with locale support
  • Format Decorators: Easy formatting via TypeScript decorators
  • Globalization Resources: String resources and localization support

📦 Installation

npm install @breadstone/ziegel-intl
# or
yarn add @breadstone/ziegel-intl

🧩 Features & Usage Examples

Culture Information

import { CultureInfo, DateTimeFormatInfo, NumberFormatInfo } from '@breadstone/ziegel-intl';

const culture = new CultureInfo('en-US');
const dateFormat = culture.dateTimeFormat;
const numberFormat = culture.numberFormat;

Calendar Systems

import {
  GregorianCalendar, HijriCalendar, HebrewCalendar,
  JapaneseCalendar, PersianCalendar, ThaiBuddhistCalendar
} from '@breadstone/ziegel-intl';

const gregorian = new GregorianCalendar();
const hijri = new HijriCalendar();
const japanese = new JapaneseCalendar();
const persian = new PersianCalendar();

Date/Time Formatting

import { DateTimeFormat, Format } from '@breadstone/ziegel-intl';

class EventService {
  @Format('yyyy-MM-dd HH:mm:ss')
  formatEventTime(date: Date): string {
    return DateTimeFormat.format(date, 'yyyy-MM-dd HH:mm:ss');
  }
}

Region and Time Zone

import { RegionInfo, TimeZoneInfo } from '@breadstone/ziegel-intl';

const usRegion = new RegionInfo('US');
const nyTimeZone = TimeZoneInfo.findSystemTimeZoneById('America/New_York');
const utcOffset = nyTimeZone.getUtcOffset(new Date());

Globalization Resources

import { GlobalizationResource, IGlobalizationResource } from '@breadstone/ziegel-intl';

@GlobalizationResource('MyResources')
class MyLocalizedClass {
  // Class with globalization support
}

📅 Supported Calendar Systems

Major Calendar Systems

  • GregorianCalendar: Standard Western calendar
  • HijriCalendar: Islamic calendar
  • HebrewCalendar: Jewish calendar
  • JapaneseCalendar: Japanese era-based calendar
  • KoreanCalendar: Korean calendar system
  • PersianCalendar: Persian/Iranian calendar
  • ThaiBuddhistCalendar: Thai Buddhist calendar

Lunisolar Calendars

  • ChineseLunisolarCalendar: Chinese traditional calendar
  • JapaneseLunisolarCalendar: Japanese lunisolar calendar
  • KoreanLunisolarCalendar: Korean lunisolar calendar
  • TaiwanLunisolarCalendar: Taiwan lunisolar calendar

Historical Calendars

  • JulianCalendar: Historical Julian calendar
  • UmAlQuraCalendar: Saudi Arabian calendar
  • TaiwanCalendar: Republic of China calendar

📚 Package import points

import {
    // Formatting
    Formatting, DateTimeFormat, Format, TimeSpanFormat,

    // Globalization Core
    Globalization, Culture, CultureInfo,

    // Calendar Systems
    Calendar, CalendarWeekRule, ICalendarInfo,
    GregorianCalendar, HijriCalendar, HebrewCalendar,
    JapaneseCalendar, JulianCalendar, KoreanCalendar,
    PersianCalendar, ThaiBuddhistCalendar,

    // Lunisolar Calendars
    ChineseLunisolarCalendar, JapaneseLunisolarCalendar,
    KoreanLunisolarCalendar, TaiwanLunisolarCalendar,
    TaiwanCalendar, UmAlQuraCalendar,

    // Format Information
    DateTimeFormatInfo, IDateTimeFormatInfo,
    NumberFormatInfo, INumberFormatInfo,

    // Region Information
    RegionInfo, IRegionInfo,

    // Time Zone Management
    TimeZone, TimeZoneInfo, TimeZoneExtensions, ITimeZone,

    // Globalization Resources
    GlobalizationResource, IGlobalizationResource
} from '@breadstone/ziegel-intl';

📚 API Documentation

For detailed API documentation, visit: API Docs

Related Packages

  • @breadstone/ziegel-core: Foundation utilities and type definitions
  • @breadstone/ziegel-intl-commerce: Commerce-specific internationalization
  • @breadstone/ziegel-intl-units: Units of measurement and conversion

License

MIT

Issues

Please report bugs and feature requests in the Issue Tracker


Part of the ziegel Enterprise TypeScript Framework

License

MIT

Package import points

import {
    // Formatting
    Formatting, DateTimeFormat, Format, TimeSpanFormat,

    // Globalization Core
    Globalization, CultureInfo, DateTimeFormatInfo, NumberFormatInfo, RegionInfo,
    TimeZoneInfo, Culture, TimeZone, IDateTimeFormatInfo, INumberFormatInfo, IRegionInfo,

    // Calendars
    Calendar, CalendarWeekRule, GregorianCalendar, HijriCalendar, HebrewCalendar,
    JapaneseCalendar, KoreanCalendar, PersianCalendar, ThaiBuddhistCalendar,
    ChineseLunisolarCalendar, JapaneseLunisolarCalendar, KoreanLunisolarCalendar,
    TaiwanCalendar, TaiwanLunisolarCalendar, UmAlQuraCalendar, JulianCalendar,
    ICalendarInfo,

    // Decorators
    GlobalizationResource, IGlobalizationResource,

    // Extensions & Interfaces
    TimeZoneExtensions, ITimeZone
} from '@breadstone/ziegel-intl';

Issues

Please report bugs and feature requests in the Issue Tracker.