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

@1dex-fr/1dex

v0.1.4

Published

Free CLI to test 1dex public address data: retrieve parcel GeoJSON around a French address and discover the advanced real-estate address API.

Readme

1dex

Command-line client for the free 1dex connector.

The main use case is simple: start from a French address and retrieve the address overview in JSON, CSV, or summary format, without an API key. Verified complementary layers are available for parcels, DVF, works, IRIS, context, and parcel labels when you need to inspect the public map-layer signals exposed today on 1dex.fr.

Install

npm i -g @1dex-fr/1dex
1dex "10 rue des cordeliers aix"

Or install it in a project and run it with npx:

npm i @1dex-fr/1dex
npx 1dex "10 rue des cordeliers aix"
npx 1dex parcelles "50 rue des tanneurs aix" -f summary
npx 1dex dvf "50 rue des tanneurs aix" -f summary
npx 1dex travaux "50 rue des tanneurs aix" -f summary

Usage

1dex "10 rue des cordeliers aix"
1dex parcelles "50 rue des tanneurs aix" --format summary
1dex dvf "50 rue des tanneurs aix" --format summary
1dex travaux "50 rue des tanneurs aix" --format summary

The bare address command calls https://1dex.fr/api/v1/address-overview and prints JSON, CSV, or a short summary. Explicit map-layer commands call https://1dex.fr/explore/map-layer/{layer}. parcelles is the primary free connector layer; dvf, travaux, iris, context, and labels are public verified shortcuts.

1dex parcelles "50 rue des tanneurs aix" --format csv
1dex parcelles "50 rue des tanneurs aix" --url

Run 1dex examples for copy-paste commands and 1dex doctor to verify that the public endpoint answers from your machine.

Options

1dex <address> [options]
1dex parcelles <address> [options]
1dex dvf <address> [options]
1dex travaux <address> [options]
1dex iris <address> [options]
1dex layer <layer> <address> [options]
1dex map parcelles <address> [options]
1dex map parcelles --address <address> [options]
1dex examples
1dex doctor [--address <address>] [options]

-a, --address <text>                 Address to resolve.
-l, --layer <layer>                  Public layer: parcelles, dvf, travaux, iris, context, labels.
-r, --viewport-render-mode <mode>    Response render mode. Verified value: features.
-b, --viewport-bbox <bbox>           Map bbox: minLon,minLat,maxLon,maxLat.
-z, --viewport-zoom <number>         Map zoom level.
    --city-code <code>               INSEE city code if already known.
    --lon <number>                   Longitude if already known.
    --lat <number>                   Latitude if already known.
    --dvf-radius-m <number>          DVF radius for address overview. Default: 600.
    --base-url <url>                 Override API base URL.
    --timeout-ms <number>            Request timeout in milliseconds.
-f, --format <json|csv|summary>      Output format.
-u, --url                            Print the generated URL and exit.
-h, --help                           Show help.
-V, --version                        Show version.

Examples:

1dex "10 rue des cordeliers aix"
1dex parcelles --address "50 rue des tanneurs aix" --url
1dex dvf "50 rue des tanneurs aix" -f summary
1dex travaux "50 rue des tanneurs aix" -f summary
1dex layer iris "50 rue des tanneurs aix" -f summary
1dex parcelles "50 rue des tanneurs aix" -f summary
1dex parcelles "50 rue des tanneurs aix" \
  --lon 5.446245 --lat 43.52782 \
  --viewport-bbox 5.4457,43.5274,5.4468,43.5282 \
  --viewport-zoom 19
1dex doctor

Set ONEDEX_BASE_URL only if you need to target another compatible environment. Set ONEDEX_NO_UPDATE_CHECK=1 to disable the npm update notice in automated environments.