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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@orderlayer/iso4217-ts

v2026.4.3

Published

Lookup currency codes based on ISO 4217

Readme

iso4217-ts

Sponsored by orderlayer.com: Digital Ordering for Restaurants

TypeScript-first module to look up currency codes based on the ISO 4217 standard. Zero runtime dependencies.

npm install iso4217-ts

Usage

import { code, country, number, codes, countries, numbers, data, publishDate } from "iso4217-ts";

code("EUR")

code("EUR");
// {
//   code: "EUR",
//   number: "978",
//   digits: 2,
//   currency: "Euro",
//   countries: ["Andorra", "Austria", "Belgium", ...]
// }

number(967)

number(967);
// {
//   code: "ZMW",
//   number: "967",
//   digits: 2,
//   currency: "Zambian Kwacha",
//   countries: ["Zambia"]
// }

country("Colombia")

country("Colombia");
// [
//   { code: "COP", number: "170", digits: 2, currency: "Colombian Peso", countries: ["Colombia"] },
//   { code: "COU", number: "970", digits: 2, currency: "Unidad de Valor Real", countries: ["Colombia"] }
// ]

codes()

codes();
// ["AED", "AFN", ..., "ZAR", "ZMW"]

numbers()

numbers();
// ["784", "971", ..., "710", "967"]

countries()

countries();
// ["United Arab Emirates (The)", "Afghanistan", ...]

data

import { data } from "iso4217-ts";
// CurrencyCodeRecord[]

publishDate

publishDate;
// "2026-01-01"

Types

import type { CurrencyCodeRecord } from "iso4217-ts";

interface CurrencyCodeRecord {
  code: string;
  number: string;
  digits: number;
  currency: string;
  countries: string[];
}

Zod integration

Use codes() to build a Zod enum for validating currency codes at runtime:

import { z } from "zod";
import { codes, code } from "iso4217-ts";

// Validate that a string is a valid ISO 4217 currency code
const currencyCodeSchema = z.enum(codes() as [string, ...string[]]);

currencyCodeSchema.parse("EUR"); // "EUR"
currencyCodeSchema.parse("FAKE"); // throws ZodError

Build a full currency record schema with lookup:

const currencySchema = z
  .string()
  .refine((val) => code(val) !== undefined, { message: "Invalid currency code" })
  .transform((val) => code(val)!);

const result = currencySchema.parse("USD");
// { code: "USD", number: "840", digits: 2, currency: "US Dollar", countries: [...] }

Use it in a larger schema:

const paymentSchema = z.object({
  amount: z.number().positive(),
  currency: z.enum(codes() as [string, ...string[]]),
});

type Payment = z.infer<typeof paymentSchema>;
// { amount: number; currency: "AED" | "AFN" | ... | "ZMW" }

Updating the data

Fetch the latest ISO 4217 data from the maintainer:

npm run iso

Acknowledgements

Inspired by currency-codes by freeall.

License

MIT