Skip to content

Simple module providing ISO-3166-1-alpha-2 country code to english country name lookup and reverse lookup

License

Notifications You must be signed in to change notification settings

georgzoeller/iso-3166-1-alpha-2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Iso-3155-1-alpha-2

Simple lookup interface for iso country codes to countries and reverse.

Notes

  • This package mirros an ISO spec and is used by a large number of packages who implement it expecting ISO adherence. Please direct requests for changes to country names or codes to the International Standards Organisation.
  • This package is maintained but feature frozen, no new features will be added. Only changes to the ISO spec will be implemented.
  • This package works browser and server side. The only dependency is mout.

Installation

npm install iso-3166-1-alpha-2

Usage

var iso3311a2 = require('./iso-3166-1-alpha-2')

// Lookup country by code
console.log iso3311a2.getCountry("DE")    // "Germany"

// Lookup code by country
console.log iso3311a2.getCode("Germany")  // "DE"

// Get array of all country codes
console.log iso3311a2.getCodes()          // ["AF","AX","AL",...]

// Get array of all country names
console.log iso3311a2.getCountries()      // ["Afghanistan","Åland Islands","Albania",...]

// Get Object with code (key) to country (value) mappings
console.log iso3311a2.getData()           // { "AF" : "Afghanistan", .... }

Documentation

Docco annotated source is found here: (docs/index.html)

About

Simple module providing ISO-3166-1-alpha-2 country code to english country name lookup and reverse lookup

Resources

License

Stars

Watchers

Forks

Packages

No packages published