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

@maschinenlesbar.org/ladesaeulenregister-cli

v0.0.2

Published

TypeScript API client and CLI for the Ladesäulenregister — the Bundesnetzagentur's register of public EV charging stations in Germany

Readme

ladesaeulenregister-cli

A dependency-light TypeScript client + CLI for the Ladesäulenregister — the Bundesnetzagentur's register of public EV charging stations in Germany (~111k Ladeeinrichtungen). Backed by a public ArcGIS FeatureServer. A bund.dev API.

  • No API key. The public charging-station data is open.
  • Zero runtime HTTP dependencies. Built on node:http/https; the CLI's only runtime dependency is commander.
  • Library + CLI. Use the typed LadesaeulenClient, or the ladesaeulen command.

We provide the tool, not the data. The data is © the Bundesnetzagentur under CC BY 4.0 — free to use with attribution. See DATA_LICENSE.md.

Install

npm install -g @maschinenlesbar.org/ladesaeulenregister-cli   # the `ladesaeulen` command
# or as a library:
npm install @maschinenlesbar.org/ladesaeulenregister-cli

CLI

ladesaeulen stations --count                                   # total public stations → 111524
ladesaeulen stations --where "Ort='Berlin' AND Typ='Schnellladeeinrichtung'" --count   # → 660
ladesaeulen stations --near 52.52,13.405 --radius 1 --count    # within 1 km of a point → 124
ladesaeulen stations --where "state='Bayern'" --limit 20       # a page of stations
ladesaeulen stations --geojson --limit 200 > stations.geojson  # GeoJSON for a map
ladesaeulen count-by state                                     # stations per Bundesland
ladesaeulen fields                                             # the queryable columns
  • stations searches with an SQL --where, paging (--limit/--offset), sorting (--order-by), field selection (--fields), a spatial --near/--radius, and --count (just the number) or --geojson output.
  • count-by <field> aggregates (e.g. per state, Typ, Betreiber).
  • fields lists the queryable columns (build --where/--fields/count-by).

Filter values are SQL, case-sensitive, single-quoted (Ort='Berlin'). Global flags: --base-url, --timeout, --user-agent, --max-retries, --max-response-bytes, --compact. See Usage.md.

Library

import { LadesaeulenClient } from "@maschinenlesbar.org/ladesaeulenregister-cli";

const c = new LadesaeulenClient();
await c.count({ where: "Typ='Schnellladeeinrichtung'" });          // number
await c.countBy("state");                                          // per Bundesland
const near = await c.stations({ near: { lat: 52.52, lon: 13.405, radiusKm: 1 } });

Documentation

Licence

Code is dual-licensed AGPL-3.0-or-later OR commercial — see LICENSING.md. No external code contributions are accepted (see CONTRIBUTING.md); bug reports and AGPL forks are welcome.