light-weight-countries-list

1.0.1 • Public • Published

Light Weight Countries List

The package is nice and simple, need a list of countries, you can find them here. Lightweight, deliberately simple in-order to reduce package size.

Install

npm i light-weight-countries-list

Import

import countries from "light-weight-countries-list";

Use

import countries from "light-weight-countries-list";
// Get all countries
console.log(countries);

// Filter countries
const europeCountries = countries.filter((country) =>
  ["FR", "DE", "IT", "ES"].includes(country.code)
);

// Find a specific country
const findCountry = (code) =>
  countries.find((country) => country.code === code);

Package Sidebar

Install

npm i light-weight-countries-list

Weekly Downloads

37

Version

1.0.1

License

ISC

Unpacked Size

8.66 kB

Total Files

3

Last publish

Collaborators

  • aidan_l