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

all-spanish-cities

v2.2.1

Published

A library that provides data on Spain's autonomies, provinces, and cities, including their codes, names, flags, and coats of arms for seamless integration into your applications.

Downloads

538

Readme


Features

  • 19 Autonomies — All Spanish autonomous communities
  • 52 Provinces — Complete province data with autonomy relationships
  • 8,131 Cities — Every Spanish municipality
  • Flags & Coats of Arms — Visual assets from Wikipedia
  • Official INE Codes — Instituto Nacional de Estadística codes
  • TypeScript Support — Full type definitions included
  • Zero Dependencies — Lightweight and fast

Installation

npm install all-spanish-cities

CDN Usage

<script src="https://cdn.jsdelivr.net/npm/all-spanish-cities/dist/index.js"></script>

Usage

import { autonomies, provinces, cities } from "all-spanish-cities";

// Get all autonomies
const allAutonomies = autonomies();

// Get all cities in Madrid province
const madridCities = cities({ code_province: "28" });

// Search cities by name
const results = cities({ name: "Barcelona" });

// Get province with its autonomy data
const [almeria] = provinces({ name: "Almería", with_autonomy: true });

API

autonomies(filters?)

Returns an array of Spanish autonomous communities.

Filters

| Parameter | Type | Description | |-----------|------|-------------| | code | string \| number | Filter by autonomy code | | name | string | Filter by name (case-insensitive, partial match) | | with_provinces | boolean | Include provinces array | | with_cities | boolean | Include cities array |

Response

interface Autonomy {
  code: string;
  name: string;
  flag: string;
  coat_of_arms: string;
  provinces?: Province[];  // when with_provinces: true
  cities?: City[];         // when with_cities: true
}

Example

import { autonomies } from "all-spanish-cities";

// Get all autonomies
autonomies();
// → [{ code: "01", name: "Andalucía", flag: "...", coat_of_arms: "..." }, ...]

// Get Catalonia with its provinces
autonomies({ name: "Cataluña", with_provinces: true });
// → [{ code: "09", name: "Cataluña", ..., provinces: [...] }]

provinces(filters?)

Returns an array of Spanish provinces.

Filters

| Parameter | Type | Description | |-----------|------|-------------| | code | string \| number | Filter by province code | | code_autonomy | string \| number | Filter by autonomy code | | name | string | Filter by name (case-insensitive, partial match) | | with_autonomy | boolean | Include parent autonomy object | | with_cities | boolean | Include cities array |

Response

interface Province {
  code: string;
  name: string;
  code_autonomy: string;
  flag: string;
  coat_of_arms: string;
  autonomy?: Autonomy;     // when with_autonomy: true
  cities?: City[];         // when with_cities: true
}

Example

import { provinces } from "all-spanish-cities";

// Get all Andalusian provinces
provinces({ code_autonomy: "01" });
// → [{ code: "04", name: "Almería", ... }, { code: "11", name: "Cádiz", ... }, ...]

// Get Barcelona with its cities
provinces({ name: "Barcelona", with_cities: true });
// → [{ code: "08", name: "Barcelona", ..., cities: [...] }]

cities(filters?)

Returns an array of Spanish cities/municipalities.

Filters

| Parameter | Type | Description | |-----------|------|-------------| | code | string \| number | Filter by city code | | code_autonomy | string \| number | Filter by autonomy code | | code_province | string \| number | Filter by province code | | name | string | Filter by name (case-insensitive, partial match) | | with_autonomy | boolean | Include parent autonomy object | | with_province | boolean | Include parent province object |

Response

interface City {
  code: string;
  name: string;
  code_autonomy: string;
  code_province: string;
  flag: string | null;
  coat_of_arms: string | null;
  autonomy?: Autonomy;     // when with_autonomy: true
  province?: Province;     // when with_province: true
}

Example

import { cities } from "all-spanish-cities";

// Get all cities named "Valverde"
cities({ name: "Valverde" });
// → [{ code: "...", name: "Valverde de Burguillos", ... }, ...] (25 results)

// Get a specific city with full context
cities({ code: "280796", with_autonomy: true, with_province: true });
// → [{ name: "Madrid", autonomy: { name: "Comunidad de Madrid", ... }, province: { ... } }]

Data Sources

| Data | Source | |------|--------| | Names & Codes | INE (Instituto Nacional de Estadística) | | Flags & Coats of Arms | Wikipedia |

License

MIT © ByMykel