1.3.0 • Published 3 years ago

m49-regions v1.3.0

Weekly downloads
26
License
Apache-2.0
Repository
github
Last release
3 years ago

List of M49 regions

npm version renovate-app Known Vulnerabilities codecov travis

This library constains list of M49 regions based on United Nations standard - https://unstats.un.org/unsd/methodology/m49/

You can use package as npm module. Just install it:

npm install m49-regions --save

and use it in you project:

var m49Regions = require('m49-regions');
console.log(m49Regions);

It can be also used with RequireJS, CommonJS, Browserify or Webpack.

Format

Each region have two mandatory properties (name and code) and one optional (sub - for subregions). Json is in hearchial structure:

{
    "code": "001",
    "name": "World",
    "sub": [ {
         "code": "009",
         "name": "Europe",
         "sub": [ ... list of sub-regions ... ]
       }
       ...
    ]
}
1.3.0

3 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago