A list of countries with url links to a svg image which you can simply use in your web application
$ npm install country-flags-svg
or
$ yarn add country-flags-svg
import { findFlagUrlByNationality } from "country-flags-svg";
const flagUrl = findFlagUrlByNationality("Australian");
// => "http://upload.wikimedia.org/wikipedia/commons/8/88/Flag_of_Australia_%28converted%29.svg"
import { countries } from "country-flags-svg";
const australia = countries[0];
console.log(australia);
/* => {
name: "Australia",
demonym: "Australian",
flag: "http://upload.wikimedia.org/wikipedia/commons/8/88/Flag_of_Australia_%28converted%29.svg",
iso2: "AU",
iso3: "AUS",
}
*/
Returns all available information.
findFlagUrlByCountryName(countryName)
Returns SVG link of the official flag for a specified country (according to countryName) or empty string if is not exist
findFlagUrlByNationality(nationality)
Returns SVG link of the official flag for a specified country (according to nationality) or empty string if is not exist
findFlagUrlByIso2Code(iso2Code)
Returns SVG link of the official flag for a specified country (according to ISO 3166-1 alpha-2 code) or empty string if is not exist
findFlagUrlByIso3Code(iso3Code)
Returns SVG link of the official flag for a specified country (according to ISO 3166-1 alpha-3 code) or empty string if is not exist
Afghanistan | Aland Islands | Albania | Algeria | American Samoa | Andorra | Angola |
Anguilla | Antigua and Barbuda | Argentina | Armenia | Aruba | Australia | Austria |
Azerbaijan | Bahamas | Bahrain | Bangladesh | Barbados | Belarus | Belgium |
Belize | Benin | Bermuda | Bhutan | Bolivia | Bonaire, Sint Eustatius and Saba | Bosnia and Herzegovina |
Botswana | Brazil | British Virgin Islands | Brunei | Bulgaria | Burkina Faso | Burundi |
Cambodia | Cameroon | Canada | Cape Verde | Cayman Islands | Central African Republic | Chad |
Chile | China | Christmas Island | Cocos Islands | Colombia | Comoros | Congo |
Cook Islands | Costa Rica | Côte d'Ivoire | Croatia | Cuba | Curaçao | Cyprus |
Czech Republic | Democratic Republic of the Congo | Denmark | Djibouti | Dominica | Dominican Republic | Ecuador |
Egypt | El Salvador | Equatorial Guinea | Eritrea | Estonia | Ethiopia | Falkland Islands |
Faroe Islands | Fiji | Finland | France | French Guiana | French Polynesia | Gabon |
Gambia | Georgia | Germany | Ghana | Gibraltar | Greece | Greenland |
Grenada | Guadeloupe | Guam | Guatemala | Guernsey | Guinea-Bissau | Guinea |
Guyana | Haiti | Holy See | Honduras | Hong Kong | Hungary | Iceland |
India | Indonesia | Iran | Iraq | Ireland | Isle of Man | Israel |
Italy | Jamaica | Japan | Jersey | Jordan | Kazakhstan | Kenya |
Kiribati | Kosovo | Kuwait | Kyrgyzstan | Laos | Latvia | Lebanon |
Lesotho | Liberia | Libya | Liechtenstein | Lithuania | Luxembourg | Macao |
Madagascar | Malawi | Malaysia | Maldives | Mali | Malta | Marshall Islands |
Martinique | Mauritania | Mauritius | Mayotte | Mexico | Micronesia | Moldova |
Monaco | Mongolia | Montenegro | Montserrat | Morocco | Mozambique | Myanmar |
Namibia | Nauru | Nepal | Netherlands Antilles | Netherlands | New Caledonia | New Zealand |
Nicaragua | Niger | Nigeria | Niue | Norfolk Island | North Korea | North Macedonia |
Northern Mariana Islands | Norway | Oman | Pakistan | Palau | Palestine | Panama |
Papua New Guinea | Paraguay | Peru | Philippines | Pitcairn | Poland | Portugal |
Puerto Rico | Qatar | Réunion | Romania | Russia | Rwanda | Saint Barthélemy |
Saint Helena, Ascension and Tristan da Cunha | Saint Kitts and Nevis | Saint Lucia | Saint Martin | Saint Pierre and Miquelon | Saint Vincent and the Grenadines | Samoa |
San Marino | Sao Tome and Principe | Saudi Arabia | Senegal | Serbia | Seychelles | Sierra Leone |
Singapore | Sint Maarten | Slovakia | Slovenia | Solomon Islands | Somalia | South Africa |
South Georgia and the South Sandwich Islands | South Korea | South Sudan | Spain | Sri Lanka | Sudan | Suriname |
Svalbard and Jan Mayen | Swaziland | Sweden | Switzerland | Syria | Taiwan | Tajikistan |
Tanzania | Thailand | Timor-Leste | Togo | Tokelau | Tonga | Trinidad and Tobago |
Tunisia | Turkey | Turkmenistan | Turks and Caicos Islands | Tuvalu | Uganda | Ukraine |
United Arab Emirates | United Kingdom | United States Minor Outlying Islands | United States | Uruguay | Uzbekistan | Vanuatu |
Venezuela | Vietnam | Virgin Islands of the United States | Wallis and Futuna | Western Sahara | Yemen | Zambia |
Zimbabwe |
* - if not enough don't be shy and provide merge request ;)
Licensed under MIT.