A node.js module to look up countries by various country codes.
Supported codes:
- FIPS 10-4 codes (2 digits)
- ISO 3166 (2 digits)
- ISO 3166 (3 digits)
- ISO 3166 (numbers)
- Internet codes
$ npm install country-code-lookup
const lookup = require('country-code-lookup')
// search by FIPS
lookup.byFips('UK')
// search by ISO
lookup.byIso('GB')
lookup.byIso('GBR')
lookup.byIso(826)
// search by internet code
lookup.byInternet('UK')
// search by country name
lookup.byCountry('United Kingdom')
// get an array of all countries
lookup.countries
Searching for a country will return either null, or a country object:
{ continent: 'Europe',
region: 'Western Europe',
country: 'United Kingdom',
capital: 'London',
fips: 'UK',
iso2: 'GB',
iso3: 'GBR',
isoNo: '826',
internet: 'UK' }
ISO 2 and 3 digit country codes: https://www.iban.com/country-codes
MIT