Package Exports
- iso-3166-1-codes
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (iso-3166-1-codes) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ISO 3166-1 codes
A list of numeric, alpha2, alpha3 and name (English short name) from
ISO 3166-1.
See also:
const countries = require('iso-3166-1-codes');
console.log(countries.map(c => c.name));
// Albania
// …
// export a Map
byNumeric()
byAlpha2()
byAlpha3()
const byNumeric = countries.byNumeric();
const byAlpha2 = countries.byAlpha2();
byNumeric.has('208');
// true
byAlpha2.get('DK');
// { numeric: '208', alpha2: 'DK', alpha3: 'DNK', name: 'Denmark' }Rationale
There's a plethora of repositories of countries with some information and some features. I wanted just a list of countries to use as primary keys for related information.
I encourage others to extend the data in new repositories using numeric,
alpha2 (my preference), or alpha3 as the country's key.