List of countries to see its flag, states, phone-code and currency
npm install country-all-dataGet Country states ,codes, currency codes, emojis, phone codes (case insensitive).
Goals of this project is to get any country information.
``
npm i country-all-data
`
let countryAllData = require('country-all-data');
or
import countryAllData from 'country-all-data'; countryAllData.getAllCountries().catch((err) => {
console.log(
Error received: , err.message);
}).then((data) => {
console.log(data);
});`$3
`
{
"countries": [
{
"country": "India",
"states": [object],
"code": "IN",
"currency_code": "INR",
"flag_base64": "data:image/svg+xml;base64.................",
"phone": "91"
},
{
"country": "United States",
"states": [object],
"code": "US",
"currency_code": "USD",
"flag_base64": "data:image/svg+xml;base64,PHN2sZyB4bWx.....",
"phone": "1"
},
...
}
``