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 🙏

© 2024 – Pkg Stats / Ryan Hefner

twitch-intl

v4.3.1

Published

I18n message formatting library tools

Downloads

3

Readme

Twitch Intl

A typescript client library for localizing values in a JS application. (formerly TwilightIntl)

See helper library twitch-intl-cli for tools to extract messages from code and managing those messages in Smartling.

See tachyon-intl for an SSR compatible wrapper of this package.

Installation

yarn add twitch-intl

Basic Usage

import { Locale, TwitchIntl } from 'twitch-intl';

// Generate a list of the locales your application supports
export function getLocales(): Locale[] {
  /***/
}

// return the value of the request's Accept-Language header on the server or
// window.navigator.languages on the client
export function getUserLanguages(): string[] {
  /***/
}

// Create an instance of Twitch Intl and tell it to choose a locale based on the user's language preferences
const intl = new TwitchIntl(getLocales());
intl.loadLocale(getUserLanguages());

// Now you can use format functions for strings, numbers, etc
const label = intl.formatMessage('String to internationalize', '<UniqueID>');

Intl Formatting Functions

Rich type info will be available in your editor for detailed usage of each of the formatting function TwitchIntl supports:

  • formatMessage - The bread and butter string formatting
  • formatDate
  • formatTime
  • formatNumber
  • formatNumberShort - Abbreviated numbers (1k, 1.5m, etc)
  • formatRelativeDate - "2 days from now" or "5 minutes ago"
  • formatPastRelativeDate - Same as above, but clamped to never display dates in the future (because otherwise a client's clock might be out of sync and their new post just happened "in 2 minutes")

Defining Locales

Default Locales

A default locale will be used in the event that none of the user languages that are provided to intl.loadLocale or intl.loadLocaleSync are found in the list of Locale objects that are provided to TwitchIntl. When this happens, the first Locale with the optional field default: true will be used. In the event that a default is not explicitly specified, the first Locale in the supported list will be used.

The default locale should correspond to the language that strings are originally written in (and can be assumed to always have a string available).

Static vs Dynamic Locales

The application data for each supported locale can be provided directly to TwitchIntl within each Locale object or loading can be deferred until the point in which a locale is selected for use. The latter approach must be utilized on the client to avoid unnecessarily loading strings for all locales and bloating the size of your application.

Example:

import { DynamicLocale, Locale, StaticLocale, TwitchIntl } from 'twitch-intl';

export function getLocales(): Locale[] {
  const defaultLocale: StaticLocale = {
    name: 'English',
    languageCode: 'en',
    locale: 'en-US',
    // Empty because the default locale strings are already present in the code so
    // no extra loading is required
    data: {},
    default: true,
  };

  const dynamicLocales: DynamicLocale[] = [
    {
      name: 'Deutsch',
      languageCode: 'de',
      locale: 'de-DE',
      loader: () => import('messages/de.json'),
    },
    // ...
  ];

  return [defaultLocale, ...dynamicLocales];
}

const intl = new TwitchIntl(getLocales());

Loading A Locale

After initializing TwitchIntl, you must call either loadLocale or loadLocaleSync exactly once in order to prompt it to select and load a locale for utilization. For convenience, both functions will return a LocaleData object so that you can determine which locale was chosen.

Synchronous Loading via loadLocaleSync

Use loadLocaleSync to avoid unnecessary asynchrony if all of your locales are of type StaticLocale.

import { StaticLocale, TwitchIntl } from 'twitch-intl';

const allLocales: StaticLocale[] = getLocales();
const intl = new TwitchIntl(allLocales);
const selectedLocaleData = intl.loadLocaleSync(['de', 'pt', 'en']);

Note: If you use loadLocaleSync and a locale of type DynamicLocale is selected, a run-time exception will be thrown.

Asynchronous Loading via loadLocale

Use loadLocale if any of the locales you have defined are of type DynamicLocale. This method also supports loading StaticLocale objects.

import { Locale, TwitchIntl } from 'twitch-intl';

const allLocales: Locale[] = getLocales();
const intl = new TwitchIntl(allLocales);
const selectedLocale = await intl.loadLocale(['de', 'pt', 'en']);