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

@localazy/languages

v2.0.3

Published

Available Localazy Languages

Readme

📦 Localazy Languages

This repository contains all the ISO 639 languages supported by Localazy. There are various forms of the content you may use

🔧 Install

npm install @localazy/languages
# or you can use yarn or pnpm

🚀 Usage

Locales Enum

One of the exported content is an enum file with all the locales in form of ENGLISH_LANGUAGE_NAME = "language_code", e.g. CZECH_CZECHIA = CZECH_CZECHIA = "cs_CZ";

import { Locales } from '@localazy/languages';

// ...

const czechia = locales.CZECH_CZECHIA;

Localazy Languages

getLocalazyLanguages lists all languages in Localazy.

import { getLocalazyLanguages, Language } from "@localazy/languages";

const languages: Language[] = getLocalazyLanguages();

console.log(languages);

// prints
// [
//  {
//      "important": true,
//      "localazyId": 0,
//      "name": "Latin American Spanish",
//      "rtl": false,
//      "locale": "es_419",
//      "englishName": "Latin American Spanish"
//  },
//  ...
// ]

Use findLocalazyLanguageByLocale if you're looking for a Localazy language identified by the locale.

import { findLocalazyLanguageByLocale } from '@localazy/languages';

console.log(findLocalazyLanguageByLocale('cs_CZ'));

// prints
// {
//       "important": false,
//       "localazyId": 61,
//       "name": "Czech (Czechia)",
//       "rtl": false,
//       "locale": "cs_CZ",
//       "englishName": "Czech (Czechia)"
// }

The language object implements the Language type which you may import as import { Language } from "@localazy/languages";

Translated language names

To get a list of all Localazy language names in given language, use resolveTranslatedList

import { resolveTranslatedList } from '@localazy/languages';

const translatedLanguagesList = await resolveTranslatedList('de');

console.log(translatedLanguagesList);

// prints
// {
//  ...
//       an:"Aragonesisch"
//       ang:"Altenglisch"
//       anp:"Angika"
//       ar:"Arabisch"
//       ar_001:"Arabisch (Welt)"
//  ...
// }

JSON Languages data

This repository various language related JSON data

Localized language list

Language names translated in their language

If you miss some language or find inaccurate translation, we will appreciate your contribution.

import localizedLanguagesList from '@localazy/languages/data/localized-language-list';

console.log(localizedLanguagesList);

// prints
// {
//  ...
//       "cs": "Čeština",
//       "csb": "Kashubian",
//       "cu": "Церковнослове́нскїй",
//       "cv": "Chuvash",
//       "cy": "Cymraeg",
//       "da": "Dansk",
//       "dak": "Dakota",
//       "dar": "Dargwa",
//       "dav": "Kitaita",
//       "de": "Deutsch",
//  ...
// }

Localazy languages

Same data that returns getLocalazyLanguages, but in JSON format.

import localazyLanguages from '@localazy/languages/data/localazy-languages';

console.log(localazyLanguages);

// prints
// [
//  {
//      "important": true,
//      "localazyId": 0,
//      "name": "Latin American Spanish",
//      "rtl": false,
//      "locale": "es_419",
//      "englishName": "Latin American Spanish"
//  },
//  ...
// ]

CLDR Multilingual language list

Returns languages recognized by CLDR. For each locale, it returns all other locales in given language.

import cldrLanguages from '@localazy/languages/data/cldr-multilingual-language-list';

console.log(cldrLanguages);

// prints
// {
//  "languages": {
//    "aa": {
//      "af": "Afar",
//      "am": "አፋርኛ",
//      "ar": "الأفارية",
//      "as": "আফাৰ",
//      "ast": "afar",
//      "az": "afar",
//      "az#Cyrl": "афар",
//      "be": "афарская",
//      "bg": "афарски",
//      "bn": "আফার",
//      "br": "afar",
//      "bs": "afarski",
//  ...
// }

ℹ️ Links

🛟 Support

Join the Localazy Discussion Forum to discuss all things localization.

If you encounter any problems or have questions, you can use our forum, GitHub issues or contact us at [email protected].

❤️ Localazy Ecosystem

Check out other npm packages from Localazy:

| | NPM package | Description | | :------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ------------------------------------ | | | @localazy/cli | Localazy CLI tool. | | | @localazy/api-client | Localazy API client. | | | @localazy/strapi-plugin | The official Localazy Strapi plugin. |

Discover all available integration options and localization examples.

📜 License

Code released under the MIT license.