Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@formatjs/intl-displaynames
Advanced tools
Polyfill for: https://tc39.es/proposal-intl-displaynames
@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 931,180 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.