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

i18n-iso-util

v1.5.0

Published

A utility library for ISO-3166 codes

Downloads

187

Readme

i18n-iso-util

A utility library for ISO-3166 codes

npm version npm monthly downloads license Build Coverage

Install

npm install i18n-iso-util # Typescript types are included

Getting Started

The getCountry function accepts alpha-2, alpha-3 and full name search input.

import { getCountry } from 'i18n-iso-util';

/**
 * Accepts alpha-2, alpha-3 or full name input
 * NOTE: All inputs are compared via a case sensitive exact string match
 */
getCountry('IN'); // => {alpha2: 'IN', alpha3: 'IND', fullName: 'India', numericCode: '356'}
getCountry('IND'); // => {alpha2: 'IN', alpha3: 'IND', fullName: 'India', numericCode: '356'}
getCountry('India'); // => {alpha2: 'IN', alpha3: 'IND', fullName: 'India', numericCode: '356'}

For those who want to lookup codes with a specific use-case in mind, the library exposes the following functions.

import {
  alpha2ToAlpha3,
  alpha2ToFullName,
  alpha3ToAlpha2,
  alpha3ToFullName,
  fullNameToAlpha2,
  fullNameToAlpha3,
} from 'i18n-iso-util';

// NOTE: All inputs are compared via a case sensitive exact string match

alpha2ToAlpha3('IN'); // => IND
alpha2ToFullName('IN'); // => India
alpha3ToAlpha2('IND'); // => IN
alpha3ToFullName('IND'); // => India
fullNameToAlpha2('India'); // => IN
fullNameToAlpha3('India'); // => IND

Datasources

A core goal of this library is to auto-generate data from the original source for each published ISO standard. This section aims to establish datasources for each standard in use.

ISO 3166-1 Country Codes

ISO-3166-1 is a standard defining codes for the names of countries.

These codes are maintained by the International Organisation for Standardization (ISO) on their online portal.

NOTE: ISO does not provide this data for free in any easily readable file format. Therefore, this library creates it's datasources through an automated web-scaper script found in scripts/extract-iso-3166-1.ts

Upcoming Features

  • Performance improvements for country lookup
  • Fuzzy matching for full country names and case insensitive lookups
  • Integrate ISO-3166-2 to support country subdivisions
  • Integrate ISO-4217 currency codes and suport lookup and standardized currencies by country
  • Integrate IANA time zone database by parsing data directly from the source. Support lookup by country code

Credits