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

n8n-nodes-geomelon

v1.0.1

Published

n8n community node for the Geomelon geographic API — cities, countries, regions, and languages with multilingual support

Readme

n8n-nodes-geomelon

n8n community node for the Geomelon geographic API — search cities, look up countries and regions, compute distances, and resolve coordinates, all with multilingual name support.

Looking for other ways to integrate? See all official libraries at geomelon.dev/libraries.

Installation

In your n8n instance: Settings → Community Nodes → Install → enter n8n-nodes-geomelon.

Requires n8n v1.0+ and Node.js 18+.

Credentials

The node uses a Geomelon API (RapidAPI) credential. You need a RapidAPI key subscribed to the Geomelon API.

  1. Create a credential of type Geomelon API (RapidAPI)
  2. Paste your RapidAPI key into the RapidAPI Key field

Resources and Operations

City

| Operation | Description | |---|---| | Search | Search cities by name prefix, country code, region, population range, with sort and pagination | | Get | Get full details for a city by UUID | | Get Translations | Get all available name translations for a city | | Get Settlement Types | Get settlement-type classifications (city, town, village, …) | | Distance | Calculate the distance in kilometres between two cities | | By Coordinates (Closest) | Find cities nearest to a lat/lon point, ordered by distance | | By Coordinates (Largest) | Find the largest cities near a lat/lon point, ordered by population |

Country

| Operation | Description | |---|---| | List | List countries with optional name, telephone code, and language filters | | Get | Get full details (including regions and translations) for a country by UUID | | Get Translations | Get name translations for a country | | Get Regions | Get all administrative regions belonging to a country |

Region

| Operation | Description | |---|---| | List | List regions, optionally filtered by country UUID | | Get | Get full details for a region by UUID | | Get Translations | Get name translations for a region |

Language

| Operation | Description | |---|---| | List | List languages available in the Geomelon database | | Get | Get details for a language by UUID |

Oneshot prefix search (free, no API key)

Fast country-scoped city prefix search served as static files. No RapidAPI subscription or credentials needed. See geomelon.dev/free-city-autocomplete-api for the HTTP endpoint, supported country/language pairs, and response shape. Use an HTTP Request node to call it directly — this n8n node does not wrap the oneshot endpoint.

Output

  • List / Search operations output one item per result, so downstream nodes can iterate naturally.
  • Get and single-result operations output one item.
  • The Distance operation outputs { distanceKm: number }.

Example Workflows

Find the 10 largest cities in France with French names

  1. Geomelon → City: Search → countryCode = FR, preferredLanguages = fr, sort = population_desc, limit = 10

Look up a city by coordinates

  1. Geomelon → City: By Coordinates (Closest) → lat = 48.8566, lon = 2.3522

Get all regions of Germany

  1. Geomelon → Country: List → name = Germany, limit = 1
  2. Geomelon → Country: Get Regions → countryId = {{ $json.id }}

License

MIT