Skip to content

Country codes. Just the codes, nothing more (CSV, JSON, and npm/Node.js requirable)

Notifications You must be signed in to change notification settings

srcagency/iso-3166-1-codes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Country codes. Just the codes, nothing more (CSV, JSON, and npm/Node.js requirable)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published