npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

country-list-js

v3.1.8

Published

Country list with ISO2, ISO3 code, continent, capital, dialing code

Downloads

30,230

Readme

Country List JS

npm version Build Status Version Total Downloads License

This module contains country information including 2 and 3 character ISO codes, country and capital names, currency information, telephone calling codes, and provinces (first-tier political subdivisions)

The functionality in this package is also available as a service, hosted on the Now platform. This modality lends itself well to microservice architectures. For more information please see the section on Now at the end of this document

Install

Add to your project from the NPM repository:

npm install --save country-list-js

And get an instance of the module:

// using ES6 modules

import country from 'country-list-js';

// using CommonJS modules
var country = require('country-list-js'); 

In a web page, you can include the modulelike this:

<script src="/path/to/country.min.js"></script>

Basic Usage

The following methods are available:

Listing

Lists can be generated using the following convenience functions:

var country_names = country.names();
var continents = country.continents();
var capitals = country.capitals();

but, in general, any of a country's attributes can be retrieved using the ls method, which can also produce the above:

var country_names = country.ls('name');
var continents = country.ls('continent');
var capitals = country.ls('capital');

Searching

Searches can be conducted by any of the following methods:

var found = country.findByIso2('BD');
var found = country.findByIso3('BGD');
var found = country.findByName('Bangladesh');
var found = country.findByCapital('Dakha');
var found = country.findByCurrency('BDT');
var found = country.findByPhoneNbr('+8804005050');
var found = country.findByProvince('Steiermark');

If the country cannot be found, the return value is undefined. If a single value is found, it is returned as an object similar to the one shown below, and if multiple matches are made, an array of such objects is returned

{ 
    name: 'Denmark',
    continent: 'Europe',
    region: 'Scandinavia, Nordic Countries',
    capital: 'Copenhagen',
    currency: { code: 'DKK', symbol: 'Dkr', decimal: '2' },
    dialing_code: '45',
    provinces: [
        { name: 'Hovedstaden', alias: null },
        { name: 'Midtjylland', alias: null },
        { name: 'Nordjylland', alias: null },
        { name: 'Sjælland', alias: [ 'Zealand' ] },
        { name: 'Syddanmark', alias: null }
    ],
    code: { iso_alpha_2: 'DK', iso_alpha_3: 'DNK' } 
}

Notes

  • Queries are cached so only the first time a country is searched by requires traversal of the internal structures and thus calls will resolve very quickly

  • Search queries are case insensitive

  • Province searches include aliases so you may search for either Sjælland or Zealand

NPM Commands

The built-in test suite may be run in the traditional way

npm test

and to build the minified file for web, run:

npm run build

and retrieve the file from dist/country.min.js

Module-as-a-service on the Now platform

The functionality in this module is also available via a REST API where any methods may be called by passing parameters to the service's url. The parameter "method" is used to indicate which method to call, and additional parameters should match the signature of the method, for example:

curl "http://country-list-js.npm.now.sh/?method=findByIso2&code=DK"

returns a JSON object with information for Denmark. In Javascript you may use your fevourite package for fetching instead:

const fetch = require('node-fetch')
const url = 'http://country-list-js.npm.now.sh/?method=findByIso2&code=DK'
fetch(url).then(res => res.json())
    .then(o => {
        console.log(o)  // will show Denmark
    })

Licence

MIT