@blockchainhub/countries-divisions-alpha3

1.0.1 • Public • Published

Countries Divisions

A comprehensive JSON module containing primary administrative divisions for countries based on the ISO 3166-1 Alpha-3 standard.

Installation

To use this module in your project, you can install it via npm:

npm install @blockchainhub/countries-divisions-alpha3

Usage

Once installed, you can require it in your JavaScript/Node.js project:

const countriesDivisions = require('@blockchainhub/countries-divisions-alpha3');
console.log(countriesDivisions['USA']); // Example output: { type_en: "State", type_local: "State" }

Data Structure

The module exports a JSON object with the structure:

{
    "ISO_3166-1_Alpha-3_Code": {
        "type_en": "Division Name in English",
        "type_local": "Division Name in Local Language"
    },
    
}

For example:

{
    "USA": {
        "type_en": "State",
        "type_local": "State"
    },
    
}

Exclusions

The following countries are excluded from the list due to lack of divisions:

  • GIB (Gibraltar)
  • MAF (Saint Martin (French part))
  • NFK (Norfolk Island)
  • SPM (Saint Pierre and Miquelon)
  • VAT (Holy See (Vatican City State))

License

This project is licensed under the CORE License. Please see the LICENSE file for more details.

Contributing

  1. Fork the repository.
  2. Clone your fork.
  3. Create a new branch.
  4. Make your changes.
  5. Commit and push your changes.
  6. Create a pull request.

Package Sidebar

Install

npm i @blockchainhub/countries-divisions-alpha3

Weekly Downloads

2

Version

1.0.1

License

CORE

Unpacked Size

2.6 kB

Total Files

3

Last publish

Collaborators

  • coreorg