All Projects → ecrmnn → iso-3166-1

ecrmnn / iso-3166-1

Licence: other
🇳🇴  Lookup information with ISO 3166-1 alpha-2, ISO 3166-1 alpha-3 and ISO 3166-1 numeric

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to iso-3166-1

Geochile
Esta es una api de Geocodificación, para que, con las coordenadas Latitud y Longitud se entregue una lista de ciudades cercanas.
Stars: ✭ 13 (-74.51%)
Mutual labels:  country
Laravel Country State
A helper to list countries & states in English in Laravel 5.1+
Stars: ✭ 77 (+50.98%)
Mutual labels:  country
Nkvphonepicker
An UITextField subclass to simplify country code's picking. Swift 5.0
Stars: ✭ 131 (+156.86%)
Mutual labels:  country
Iso3166 1
🇺🇸 The smallest, fastest, node module for ISO 3166-1 alpha 2/3 helper lookup/parser. Browserify/Webpack friendly.
Stars: ✭ 20 (-60.78%)
Mutual labels:  country
Countries States Cities Database
🌍 World countries, states, regions, provinces, cities, towns in JSON, SQL, XML, PLIST, YAML, and CSV. All Countries, States, Cities with ISO2, ISO3, Country Code, Phone Code, Capital, Native Language, Timezones, Latitude, Longitude, Region, Subregion, Flag Emoji, and Currency. #countries #states #cities
Stars: ✭ 1,130 (+2115.69%)
Mutual labels:  country
Awesome Open Source By Country Or Region
Lists of open source projects mainly made by devs of a country or region.
Stars: ✭ 102 (+100%)
Mutual labels:  country
Country Json
A simple data of the world by country each in JSON format.
Stars: ✭ 688 (+1249.02%)
Mutual labels:  country
Laravel Location
A simple Laravel Package to sort Countries, States and Cities
Stars: ✭ 162 (+217.65%)
Mutual labels:  country
M0b Tool
exploit
Stars: ✭ 68 (+33.33%)
Mutual labels:  country
Timeline
直观地显示各个历史时间段及历史地图。Visually display various historical time periods and historical maps.
Stars: ✭ 127 (+149.02%)
Mutual labels:  country
Flag Icon Css
🎏 A curated collection of all country flags in SVG — plus the CSS for easier integration
Stars: ✭ 7,982 (+15550.98%)
Mutual labels:  country
Geo Maps
🗺 High Quality GeoJSON maps programmatically generated.
Stars: ✭ 1,098 (+2052.94%)
Mutual labels:  country
Geo ip
Retreive the geolocation of an IP address based on the ipinfodb.com webservice
Stars: ✭ 103 (+101.96%)
Mutual labels:  country
Qpdialcodepickerview
International Dial Code Picker View for Country or Area 国家或地区国际区号选择器
Stars: ✭ 15 (-70.59%)
Mutual labels:  country
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (+172.55%)
Mutual labels:  country
Go country
Country is the package that helps you to get country name and dialling code by the country ISO 3166-1 Alpha-2 code.
Stars: ✭ 11 (-78.43%)
Mutual labels:  country
Country Ip Blocks
CIDR country-level IP data, straight from the Regional Internet Registries, updated hourly.
Stars: ✭ 100 (+96.08%)
Mutual labels:  country
Laravel World
provide countries, states, and cities relations and database.
Stars: ✭ 222 (+335.29%)
Mutual labels:  country
Covid19radar
Open Source / i18n / iOS Android Cross Platform Contact Tracing App by exposure notification framework Xamarin App and Server Side Code
Stars: ✭ 35 (-31.37%)
Mutual labels:  country
Smartmaterialspinner
The powerful android spinner library for your application
Stars: ✭ 108 (+111.76%)
Mutual labels:  country

iso-3166-1

Lookup information with ISO 3166-1 alpha-2, ISO 3166-1 alpha-3 and ISO 3166-1 numeric

Build Status npm version npm version npm version

Installation

npm install iso-3166-1 --save

Usage

Get country by ISO 3166-1 Alpha-2

const iso = require('iso-3166-1');

console.log(iso.whereAlpha2('no'));
/** Returns:
  {
    country: 'Norway',
    alpha2: 'NO',
    alpha3: 'NOR',
    numeric: '578'
  }
*/

Get country by ISO 3166-1 Alpha-3

const iso = require('iso-3166-1');

console.log(iso.whereAlpha3('nor'));
/** Returns:
  {
    country: 'Norway',
    alpha2: 'NO',
    alpha3: 'NOR',
    numeric: '578'
  }
*/

Get country by ISO 3166-1 Numeric

const iso = require('iso-3166-1');

console.log(iso.whereNumeric(578));
/** Returns:
  {
    country: 'Norway',
    alpha2: 'NO',
    alpha3: 'NOR',
    numeric: '578'
  }
*/

Get country by country name

const iso = require('iso-3166-1');

console.log(iso.whereCountry('NORWAY'));
/** Returns:
  {
    country: 'Norway',
    alpha2: 'NO',
    alpha3: 'NOR',
    numeric: '578'
  }
*/

Get all countries

const iso = require('iso-3166-1');

console.log(iso.all());
/** Returns:
  [
    {
      country: 'Norway',
      alpha2: 'NO',
      alpha3: 'NOR',
      numeric: '578'
    }
  ]
*/

License

MIT © Daniel Eckermann

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].