@jagomf/countrieslist
v3.0.1
Published
Sovereign countries' names in many languages with their ISO-3166-1 alpha-2.
Downloads
1,224
Maintainers
Readme
countrieslist
Get all sovereign countries' names in several languages associated to their ISO 3166-1 (alpha-2) code.
Install
Via npm:
npm install @jagomf/countrieslist
Supported languages
- English (
en
) - Spanish (
es
) - German (
de
) - French (
fr
) - Portuguese (
pt
) - Italian (
it
)
Usage
Import some or all of the language pieces:
import { en, es as langES, fr as countriesFR } from '@jagomf/countrieslist';
console.log(en.SM); // 'San Marino'
console.log(langES.NL); // 'Países Bajos'
console.log(countriesFR['GR']); // 'Grèce'
import * as COUNTRIES from '@jagomf/countrieslist';
console.log(COUNTRIES.en.TT); // 'Trinidad and Tobago'
console.log(COUNTRIES.es.CI); // 'Costa de Marfil'