Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@formatjs/intl-displaynames
Advanced tools
@formatjs/intl-displaynames is a JavaScript library that provides a way to display names of various international entities such as languages, regions, scripts, and currencies in a localized manner. It leverages the Internationalization API to format these names according to the specified locale.
Display Language Names
This feature allows you to display the name of a language in a localized format. In this example, the name of the French language is displayed in English.
const { DisplayNames } = require('@formatjs/intl-displaynames');
const displayNames = new DisplayNames(['en'], { type: 'language' });
console.log(displayNames.of('fr')); // Output: French
Display Region Names
This feature allows you to display the name of a region in a localized format. In this example, the name of the United States is displayed in English.
const { DisplayNames } = require('@formatjs/intl-displaynames');
const displayNames = new DisplayNames(['en'], { type: 'region' });
console.log(displayNames.of('US')); // Output: United States
Display Script Names
This feature allows you to display the name of a script in a localized format. In this example, the name of the Latin script is displayed in English.
const { DisplayNames } = require('@formatjs/intl-displaynames');
const displayNames = new DisplayNames(['en'], { type: 'script' });
console.log(displayNames.of('Latn')); // Output: Latin
Display Currency Names
This feature allows you to display the name of a currency in a localized format. In this example, the name of the US Dollar is displayed in English.
const { DisplayNames } = require('@formatjs/intl-displaynames');
const displayNames = new DisplayNames(['en'], { type: 'currency' });
console.log(displayNames.of('USD')); // Output: US Dollar
Globalize is a library for internationalization and localization in JavaScript. It provides functionalities for formatting and parsing dates, numbers, and currencies, as well as message translation. Compared to @formatjs/intl-displaynames, Globalize offers a broader range of internationalization features but may require more configuration.
i18next is a popular internationalization framework for JavaScript. It supports translation, formatting, and pluralization. While it does not specifically focus on displaying names of languages, regions, scripts, and currencies, it provides a comprehensive solution for managing translations and localization in web applications.
The intl package is a polyfill for the ECMAScript Internationalization API, which includes functionalities for formatting dates, numbers, and currencies. It provides a lower-level API compared to @formatjs/intl-displaynames but can be used to achieve similar results with more manual effort.
intl-displaynames
We've migrated the docs to https://formatjs.io/docs/polyfills/intl-displaynames.
FAQs
Polyfill for: https://tc39.es/proposal-intl-displaynames
The npm package @formatjs/intl-displaynames receives a total of 884,285 weekly downloads. As such, @formatjs/intl-displaynames popularity was classified as popular.
We found that @formatjs/intl-displaynames demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.