Translated lists of countries and languages in JSON format
Find a file
dependabot[bot] a3d7920e57 Bump ws from 7.3.1 to 7.4.6
Bumps [ws](https://github.com/websockets/ws) from 7.3.1 to 7.4.6.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/7.3.1...7.4.6)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-30 20:07:07 -03:00
.github/workflows run tests in each push 2020-08-13 08:55:46 -03:00
lib Enable Korean language 2021-03-02 19:21:33 -03:00
res Enable Korean language 2021-03-02 19:21:33 -03:00
scripts include missing countries + switch to HOT overpass 2020-08-13 09:16:20 -03:00
src Enable Korean language 2021-03-02 19:21:33 -03:00
tests Enable Korean language 2021-03-02 19:21:33 -03:00
.gitignore Switch to OSM data + refactoring 2020-07-23 22:19:26 -03:00
.prettierignore Switch to OSM data + refactoring 2020-07-23 22:19:26 -03:00
dependabot.yml patch United States to United States of America 2020-07-24 08:46:47 -03:00
LICENSE Switch to OSM data + refactoring 2020-07-23 22:19:26 -03:00
package.json v1.1.1 2021-04-30 15:30:20 -03:00
prettier.config.js Switch to OSM data + refactoring 2020-07-23 22:19:26 -03:00
README.md improve Readme + add dependabot 2020-07-24 06:55:37 -03:00
webpack.config.js Switch to OSM data + refactoring 2020-07-23 22:19:26 -03:00
yarn.lock Bump ws from 7.3.1 to 7.4.6 2021-05-30 20:07:07 -03:00

iso-countries-languages

npm version

This library provides the full list of ISO 639-1 languages and the full list of ISO 3166-1 countries. The library supports 89 languages (the full list is available by querying the library API itself) and it is designed to be easy to import and use.

Installation

Simply run the following code and look at the examples to see typical usages:

yarn add @hotosm/iso-countries-languages

Customization

This library includes data for more than 150 languages. To make the build smaller, we have only 24 languages enabled, but you can easily build that package with more languages enabled. Follow those steps:

To update the countries data from OpenStreetMap, execute yarn update-countries.

API list

getSupportedLangs

Returns the list of supported languages.

var isoCountriesLanguages = require('iso-countries-languages');

var supportedLangs = isoCountriesLanguages.getSupportedLangs();
console.log("Supported languages: ");
console.log(supportedLangs);

Output

Supported languages:
[ 'af',
  'am',
  'ar',
  'az',
  'ba',

  ...

  'udm',
  'uk',
  'ur',
  'uz',
  'vi',
  'xh',
  'yi',
  'zh' ]

getCountries

Returns the ISO 3166-1 list of countries translated in the language passed as a parameter.

var isoCountriesLanguages = require('iso-countries-languages');

var countriesInFrench = isoCountriesLanguages.getCountries('fr');
console.log("Countries in french: ");
console.log(countriesInFrench);

Output

Countries in french:
{ AF: 'Afghanistan',
  AX: 'Les Îles D\'Åland',
  AL: 'L\'albanie',
  DZ: 'L\'algérie',
  AS: 'Samoa Américaines',
  AD: 'Andorre',

  ...

  WF: 'Wallis-et-Futuna',
  EH: 'Sahara Occidental',
  YE: 'Yémen',
  ZM: 'La zambie',
  ZW: 'Zimbabwe' }

getCountry

Returns the translation for the country code passed as a parameter in the language passed as a parameter.

var isoCountriesLanguages = require('iso-countries-languages');

var italyInFrench = isoCountriesLanguages.getCountry('fr', 'IT');
console.log("Italy in french: ");
console.log(italyInFrench);

Output

Italy in french:
Italie

getLanguages

Returns the ISO 639-1 list of languages translated in the language passed as a parameter

var isoCountriesLanguages = require('iso-countries-languages');

var languagesInItalian = isoCountriesLanguages.getLanguages('it');
console.log("Languages in italian: ");
console.log(languagesInItalian);

Output

Languages in italian:
{ ab: 'Di abcasia',
  aa: 'Lontano',
  af: 'Afrikaans',
  ak: 'Akan',
  sq: 'Albanese',
  am: 'Amarico',
  ar: 'Arabo',

  ...

  xh: 'Xhosa',
  yi: 'Yiddish',
  yo: 'Yoruba',
  za: 'Zhuang, Chuang',
  zu: 'Zulu' }

getLanguage

Returns the translation for the language code passed as a parameter in the language passed as a parameter

var isoCountriesLanguages = require('iso-countries-languages');

var spanishInItalian = isoCountriesLanguages.getLanguage('it', 'es');
console.log("Spanish in italian: ");
console.log(spanishInItalian);

Output

Spanish in italian:
Spagnolo

License

MIT License

The country names included in this project came from OpenStreetMap. The data is made available under ODbL.