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

@proximap/cli

v1.0.1

Published

Command-line interface for proximap — find and rank what's near any place.

Readme

@proximap/cli

The proximap command-line tool — find and rank what's near any place, powered by OpenStreetMap. No API keys required.

Install

npm install -g @proximap/cli
# or run without installing:
npx @proximap/cli near "Eiffel Tower, Paris"

Commands

| Command | What it does | | --- | --- | | near <place> | Nearby amenities, ranked by distance (or --by travel-time). Filters, accessibility, open-now, export, offline. | | geocode <place> | Resolve a name to coordinates; warns and lists candidates when ambiguous. | | gaps <place> | Which everyday amenities are missing nearby (framed as "not found in OSM"). | | score <place> | Walkability score 0–100 with a per-category breakdown and confidence. | | compare <a> <b> … | Rank 2+ locations by weighted access to what you care about. | | reachable <place> | What's reachable within a time budget (isochrone). | | errands <place> | Shortest trip that hits one of each category (Generalized TSP). | | snapshot <place> | Capture an area's POIs to a file for offline reuse. | | bulk <file> | Walkability-score many locations from a file → CSV. |

Run proximap --help or proximap <command> --help for all flags.

Usage

# Nearby amenities within 800 m, ranked by distance
proximap near "Eiffel Tower, Paris" --radius 800 --limit 20

# Filter by category, output JSON
proximap near "MG Road, Bengaluru" --category healthcare --category food --json

# Compose facets: a vegan place that does takeaway and accepts contactless
proximap near "Kreuzberg, Berlin" -c food --filter diet=vegan --filter takeaway --filter payment=contactless

# Accessibility-first: rank step-free / wheelchair-accessible places first
proximap near "Bahnhofstrasse, Zürich" -c food --accessible

# Only what's open right now (or at a future time); unknown hours are kept + labelled
proximap near "Shibuya, Tokyo" -c coffee --open-now
proximap near "Shibuya, Tokyo" -c food --open-at 2026-06-20T21:00

# Rank by real walking/cycling/driving time (key-free Valhalla routing)
proximap near "Alexanderplatz, Berlin" -c cafe --by travel-time --mode walk

# What's reachable within a 15-minute walk? (isochrone)
proximap reachable "Alexanderplatz, Berlin" --within 15min --mode walk -c grocery

# Shortest trip that hits one of each: pharmacy AND atm AND grocery (Generalized TSP)
proximap errands "Alexanderplatz, Berlin" -c pharmacy -c atm -c grocery

# Works with coordinates too
proximap near "48.8584,2.2945"

# Resolve a place to coordinates
proximap geocode "Sydney Opera House"

# What everyday amenities are MISSING nearby? (framed as "not found in OSM")
proximap gaps "Brandenburg Gate, Berlin" --radius 3000 --threshold 1000

# How walkable / well-served is this address? (0-100, with a breakdown)
proximap score "Brandenburg Gate, Berlin"

# Compare places to live by access to what you care about
proximap compare "Prenzlauer Berg, Berlin" "Marzahn, Berlin" --weights grocery=3,transport=2,park=2

# Export results for GIS / spreadsheets (OSM data is yours to store under ODbL)
proximap near "Eiffel Tower, Paris" -c food --format geojson > food.geojson
proximap near "Eiffel Tower, Paris" -c food --format csv > food.csv

# Snapshot an area once, then query it offline with no network calls
proximap snapshot "Montmartre, Paris" --radius 1500 --out montmartre.json
proximap near "48.8867,2.3431" -c cafe --dataset montmartre.json

# Bulk-score many locations from a file → CSV
proximap bulk addresses.txt > scores.csv

Run proximap --help or proximap <command> --help for all options.

License

MIT