@honua/sdk-js

MapLibre gives you the map. Honua gives you everything else: typed clients for Esri GeoServices, OGC API (Features / Tiles / Maps / Processes), STAC, WMS/WMTS, WFS 2.0, and OData v4 — plus a one-call data→map bridge and a drop-in ArcGIS migration path.

Building on MapLibre → quickstart Leaving ArcGIS → widget survival guide API reference Demo gallery

Classic Esri widgets are deprecated at ArcGIS JS 5.0 and removed at 6.0 (planned Q1 2027). Scan your app: npm run scan:arcgis:widgets -- ./src.

Honua JS SDK

OpenSSF Scorecard

npm types license node docs

MapLibre gives you the map. Honua gives you everything else.

@honua/sdk-js is the integration layer for the open map stack: typed clients for the protocols your data already speaks (Esri GeoServices, OGC API Features / Tiles / Maps / Processes, STAC, WMS, WMTS, WFS 2.0, OData v4), a one-call data→map bridge and MapLibre runtime, provider-pluggable geocoding and routing, and a drop-in ArcGIS compatibility layer with a codemod — everything around the renderer, so MapLibre (2D) and Cesium (3D) can do what they do best.

Leaving ArcGIS? Every classic Esri widget was deprecated at ArcGIS JS SDK 5.0 and is removed at 6.0 — planned for Q1 2027. If your app constructs one, that code stops compiling and running when you take the 6.0 upgrade. Run npm run scan:arcgis:widgets -- ./src for a per-file readiness report, then read the widget-removal survival guide — every deprecated widget mapped to its Honua/MapLibre disposition.

A public endpoint to a styled map

Nine application lines. No Honua server, no API key, no account — a public Esri Living Atlas FeatureServer becomes a styled, interactive MapLibre map:

import { connect } from "@honua/sdk-js";
import { mountSource } from "@honua/sdk-js/map";
import maplibregl from "maplibre-gl";

const endpoint = "https://services.arcgis.com/P3ePLMYs2RVChkJx/arcgis/rest/services/2020_Census_State_Apportionment/FeatureServer/0";
const map = new maplibregl.Map({ container: "map", style: "https://demotiles.maplibre.org/style.json", center: [-98, 39], zoom: 3 });
await map.once("load");
const data = await connect({ endpoint, protocol: "auto", authorizationScopeFingerprint: "public" });
await mountSource(map, data.source(), {
  popup: { factory: () => new maplibregl.Popup(), fields: ["NAME", "Seats_2020"] },
  hover: true,
  fitBounds: true,
});

For those nine lines the bridge selected a materialization strategy from the source's declared capabilities, installed geometry-appropriate default styling, wired click popups and hover feature-state, fit the map to the data, and returned one owned handle (setFilter() diff-updates in place; dispose() removes everything the bridge added). Run it locally with npm run demo:endpoint-to-map (examples/endpoint-to-map/); the full cookbook is docs/data-to-map-bridge.md.

Release status: beta (0.1.0-beta.0). The 22-entrypoint stable tier is frozen and guarded by an API-surface gate; 11 experimental subpaths may change before 1.0, and 18 deprecated compatibility subpaths have explicit removal versions. See config/support-manifest.v1.json for the versioned support truth, config/public-surface.json for its generated package projection, support/projections/sdk-support.v1.json for the generic site/sample consumer contract, and the scope decision.

📚 Hosted docs: honua-io.github.io/honua-sdk-js — quickstart, the full guide corpus, the TypeDoc API reference, and the demo gallery.

Pick your path

🗺️ Building on MapLibre 🚦 Leaving ArcGIS
You are… adding typed data access, styling, and interactions to a MapLibre (or brand-new) app facing the classic-widget removal at ArcGIS JS 6.0 (planned Q1 2027)
Start Standalone quickstart — the SDK against any public endpoint, no Honua server npm run scan:arcgis:widgets -- ./src — per-file 6.0 readiness report from the migration scanner
Then Data-to-map bridge cookbookconnect()mountSource() strategies, styling, filters Widget survival guide — all 38 deprecated widgets mapped to automated / assisted / manual dispositions
Go deeper MapLibre runtime · React bindings · geometry ops · geocoding & routing providers esri-compat drop-ins + the honua-migrate codemod · migration punch list
Runnable proof examples/endpoint-to-map/ — the headline above, live migration-workbench (npm run demo:migration-workbench) — scan → codemod → run, end to end

Where it fits

The rendering war is settled — MapLibre is the open 2D engine of record and Cesium owns open 3D. What the open stack has been missing is the layer above the renderer: service clients, styling, interactions, editing, geocoding, migration tooling — the glue every team hand-rolls. That integration layer is what @honua/sdk-js owns:

The honest comparisons are the service-client libraries, not the renderers:

The numbers behind those claims — generated bundle sizes, a protocol-coverage matrix against raw MapLibre / @esri/arcgis-rest-js / OpenLayers, and a scripted time-to-first-map benchmark with a runnable repro (npm run bench:ttfm) — live in docs/comparison.md.

Honua Server is optional for standards clients. Supported GeoServices, OGC API Features, WFS 2.0, STAC, and OData claims work against raw standards-speaking endpoints. OGC API Tiles (beta), Maps (beta), and Records (beta) also discover and use raw advertised paths. OGC API Processes keeps two honest lanes: raw discovery is experimental, while typed execution is facade-required.

A Honua Server adds server-authored MapPackages, realtime, collaboration, MCP/AI execution, compatibility metadata, and the facade-required execution paths. See the generated backend-agnostic capability matrix for every claim, execution mode, and evidence link.

What Honua does not do

In the spirit of the migration punch list, the non-goals are explicit rather than implied:

Install

npm install @honua/sdk-js

Everything documented here ships in @honua/sdk-js as subpath entrypoints (see INSTALL.md). Focused standalone packages are also published from this repository for consumers who only want a subset:

Package What it is
@honua/sdk-js The canonical install — full SDK with all subpath entrypoints + the honua CLI
@honua/mcp-server Platform-free geospatial MCP server (honua-mcp, honua-mcp-proxy) — see mcp/
@honua/react React provider, hooks, and map components (docs/react.md)
@honua/geometry Curated turf/proj4 geometry ops + reprojection (docs/geometry.md)
@honua/sdk Core client + contract only (split build)
@honua/sdk-esri-compat ArcGIS JS compatibility layer (split build)
@honua/honua-migrate Migration codemod + scanner (split build)
@honua/app-platform Application-platform surfaces extracted from the SDK (own pre-1.0 cadence)

The split builds exist for packaging workflows and subset consumers; details in docs/split-packages.md.

Build-less / CDN usage

For static sites, prototypes, or CSP-strict pages that can't run a bundler, a prebuilt browser bundle is published under dist/browser/. Drop in the minified IIFE build and use the global window.HonuaSDK:

<script src="https://cdn.jsdelivr.net/npm/@honua/sdk-js/dist/browser/honua-sdk.min.js"></script>
<script>
  const client = new HonuaSDK.HonuaClient({ baseUrl: "https://your-honua-server.example" });
  // window.HonuaSDK exposes the same public API as `import ... from "@honua/sdk-js"`.
</script>

Or, for native ES module imports via an ESM CDN:

<script type="module">
  import { HonuaClient } from "https://esm.sh/@honua/sdk-js/browser";
  const client = new HonuaClient({ baseUrl: "https://your-honua-server.example" });
</script>

The runtime peers (maplibre-gl, cesium, @bufbuild/*, @connectrpc/*) are kept external — load them yourself when you need map rendering or gRPC transport. See docs/browser-bundle.md for details.

Bundle size

Small and honest about size: every subpath entrypoint carries a min+gzip byte budget that CI enforces on every PR (npm run verify:bundle-budgets), so drift fails the build instead of shipping. Sizes are measured the way a consumer builds — esbuild --bundle --minify, runtime peers external. A tree-shake guard proves that importing a single symbol from the root doesn't drag the whole SDK in.

Entrypoint (gzip) Size
@honua/sdk-js/geocoding 1.9 KiB
@honua/sdk-js/expr 2.4 KiB
@honua/sdk-js/webmap 5.9 KiB
@honua/sdk-js/style 8.4 KiB
@honua/sdk-js/map 31.2 KiB
@honua/sdk-js (root) 94.9 KiB
{ HonuaClient } only (tree-shake guard) 48.6 KiB

Full per-entrypoint table (min + gzip, generated, not hand-written): docs/bundle-sizes.md. Refresh it with npm run report:bundle-sizes. For how these sizes stack up against @arcgis/core and friends, see the generated comparison page.

60-second quickstart

No Honua server required. The first block below runs against a public Esri GeoServices endpoint — no API key, no account, no infrastructure. The canonical surface is protocol-neutral: build a Dataset over one or more Sources, then call queryAll() (or query() / stream()).

import { createDataset, HonuaClient, PROTOCOL_DEFAULT_CAPABILITIES } from "@honua/sdk-js";

// A public Esri Living Atlas FeatureServer — nothing of Honua's is running.
const client = new HonuaClient({
  baseUrl: "https://services.arcgis.com/P3ePLMYs2RVChkJx/arcgis",
});

const dataset = createDataset({
  id: "states",
  client,
  sources: [
    {
      id: "apportionment",
      protocol: "geoservices-feature-service",
      locator: {
        url: "https://services.arcgis.com/P3ePLMYs2RVChkJx/arcgis",
        serviceId: "2020_Census_State_Apportionment",
        layerId: 0,
      },
      capabilities: PROTOCOL_DEFAULT_CAPABILITIES["geoservices-feature-service"],
    },
  ],
});

const states = dataset.source("apportionment")!;
const result = await states.queryAll({
  where: "Seats_2020 > 10",
  outFields: ["NAME", "Total_Pop_2020", "Seats_2020"],
  returnGeometry: true,
  pagination: { limit: 100 },
});

console.log(`Loaded ${result.features.length} states`);

The same code works against any GeoServices, OGC API Features, WFS, OData, or STAC endpoint. Migrating from esri-leaflet? The raw GeoServices shape and the esri-compat drop-in point at services.arcgis.com-style URLs unchanged:

const { features } = await client.queryFeatures({
  serviceId: "2020_Census_State_Apportionment",
  layerId: 0,
  where: "1=1",
  outFields: ["*"],
  returnGeometry: true,
  resultRecordCount: 25,
});

Run the complete standalone app locally — public endpoint in, MapLibre map out:

npm install
npm run demo:standalone:mock   # deterministic fixture lane (what CI runs)
npm run demo:standalone        # live lane against the public Esri endpoint

See docs/standalone-quickstart.md for the guided server-optional walkthrough, docs/standalone-capability-matrix.md for the backend-agnostic vs server-enhanced breakdown, and examples/standalone-quickstart/ for the committed source.

Add a Honua Server

A Honua Server unlocks server-authored MapPackages (loadMapPackage()), realtime subscriptions, collaboration / saved maps, and the MCP + AI surfaces. Point the same code at a local server (docker compose up in a honua-server checkout), and gate production reads on the compatibility check:

const { supported, reasons } = await client.checkCompatibility();
if (!supported) throw new Error(`Unsupported Honua server: ${reasons.join("; ")}`);

The server-connected lane is the maplibre-quickstart example (npm run demo:quickstart:mock); see docs/quickstart.md and docs/quickstart-troubleshooting.md.

Command-line client (honua)

Installing the SDK also installs a first-class honua CLI — the same querying and catalog browsing without writing code. It wraps the SDK (no raw HTTP, no URL-encoding, no f=json), prints readable tables by default, and adds --json / --format geojson for machine output.

npm i -g @honua/sdk-js            # or: npx @honua/sdk-js honua <command>
export HONUA_BASE_URL=https://demo.honua.io   # anonymous reads on the public demo

honua services                    # list published services
honua layers maui-parcels         # list a service's layers
honua query maui-parcels/1 --count
honua query maui-parcels/1 --where "tmk_txt LIKE '2%'" --limit 5
honua query maui-parcels/1 --bbox -156.7,20.7,-156.3,21.0 --format geojson
honua stac collections
honua geocode "1 Honolulu Pl, HI"
honua map export maui-parcels --bbox -156.7,20.7,-156.3,21.0 --size 800x600 -o maui.png

Authentication resolves from --api-key, HONUA_API_KEY, or a saved honua login. Run honua --help for the full command surface. This is the recommended replacement for curl in docs and demos.

For support-safe interoperability evidence, honua doctor emits a local, schema-validated diagnostic bundle with explicit classification/consent, credential and PII redaction, bounded previews, and original-byte SHA-256 metadata. honua doctor --replay permits only one bounded, abortable GET/HEAD and fails closed before network access for mutations, subscriptions, unsafe paths, credentials, malformed schemas, or hash drift. It never uploads. See docs/diagnostic-bundles.md.

What you can build

The versioned SDK sample catalog tracks all 34 executable examples: 0 qualified golden samples, 15 recipes, 17 labs, and 2 fixtures. Seven journey IDs are reserved; 7 remain explicitly planned candidates. The catalog is the source of truth for track, support, lifecycle, fixture/live evidence, quality profiles, and the honua.io projection.

Linking to Honua from a plugin directory or ecosystem list? Point at the server-optional standalone quickstart (hosted walkthrough, source) — CI keeps it green with a Playwright browser smoke on every PR. Prepared directory entries live in docs/listings/maplibre-plugin-directory.md.

Mental model: DatasetSourceQueryResult

Every Honua SDK — JavaScript, Python, .NET — speaks the same canonical vocabulary. A Dataset groups one or more Sources. Each Source accepts a protocol-neutral Query and returns a protocol-neutral Result. Operations the canonical surface does not cover stay reachable through the typed source.protocol(...) escape hatch. Method casing differs by language (queryAll() / query_all() / QueryAllAsync()), the semantics do not.

Capability misses throw HonuaCapabilityNotSupportedError (under the default strict policy) rather than silently returning empty results. See the 60-second quickstart above for the runnable shape; the cross-language semantics, protocol/capability identifiers, language-binding tables, and backwards-compatibility policy live in:

Documentation

Platform-wide documentation (server concepts, deployment, Esri migration) lives at honua.gitbook.io/honuaio.

Run npm run docs:learning:verify from a fresh checkout to build the SDK and validate learning-path metadata, internal links, generated Markdown, and runtime imports. CI reuses its existing build with the internal npm run docs:learning:check command, then separately compiles every selected example through npm run docs:learning:typecheck. Run npm run docs:snippets:verify to build the public declarations and validate all supported JavaScript and TypeScript documentation fences.

AI assistants

Coding agents (Claude Code, Cursor, and compatible assistants) can discover and correctly use this SDK:

Stability and versioning

Support and lifecycle

We publish a lifecycle because a library you build on should tell you what it promises. esri-leaflet never did, and "will this break under me?" is the question that decides adoption.

Long-form reference material now lives in docs/guide.md:

Protocol-specific deep dives also live alongside the guide: see docs/wfs.md, docs/ogc-api.md, docs/maplibre-runtime.md, docs/webmap-json-compatibility.md, docs/protocol-capability-matrix.md, docs/migration-punch-list.md, and docs/widget-survival-guide.md (every ArcGIS widget deprecated at 5.0 mapped to its Honua/MapLibre disposition ahead of the 6.0 removal — run npm run scan:arcgis:widgets -- ./src for a per-file readiness report).

Repo What it is
honua-server Flagship multi-protocol geospatial server (ELv2 open core)
honua-console Unified web console — Studio, Catalog, Operate, Share
honua-sdk-python Python SDK (same Dataset/Source/Query/Result contract)
honua-sdk-dotnet .NET SDKs (same contract)
honua-esri-assess Esri footprint assessment CLI for migration discovery
geospatial-mcp Open, vendor-neutral geospatial MCP standard

Contributing

This SDK ships from a single repository: the canonical package is @honua/sdk-js (all subpath entrypoints in INSTALL.md live under that name), with the standalone packages in the table above built from the same source tree. The MCP server lives in mcp/. See AGENTS.md for contributor instructions and the Specifica issue format used for backlog items.

Security

Report vulnerabilities to security@honua.io — see the org security policy. Please do not open public issues for security reports.

License

Apache 2.0