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

@walkthru-earth/objex

v1.0.0

Published

Svelte 5 components and utilities for exploring geospatial object storage — S3, GCS, Azure, R2

Readme

objex

Cloud storage explorer that runs entirely in the browser. Connect to S3, Azure, GCS, R2, MinIO -- browse files, query data with SQL, and visualize geospatial formats on interactive maps. No backend required.

graph LR
    Cloud["Cloud Storage<br/>S3 / Azure / GCS / R2"] -->|HTTP range requests| App["objex<br/>(browser SPA)"]
    App --> Browse[File Tree]
    App --> Query["DuckDB-WASM<br/>SQL Engine"]
    App --> Map["MapLibre + deck.gl<br/>Geo Visualization"]
    App --> View["18+ Viewers<br/>Tables, Code, Notebooks, PDF, 3D..."]

Features

  • Browse cloud storage (S3, GCS, Azure, R2, B2, DigitalOcean, Wasabi, Storj, Hetzner, Contabo, Linode, OVHcloud, MinIO, direct URLs)
  • Query Parquet, CSV, JSONL with SQL (DuckDB-WASM, cancellable queries)
  • Visualize GeoParquet, GeoJSON, COG, PMTiles, FlatGeobuf, Zarr on maps (MapLibre + deck.gl)
  • View 100+ file formats: code (30+ languages), Jupyter notebooks, PDF, 3D models, archives, media
  • Share via URL -- ?url=<storage-url>#<view> encodes full viewer state
  • i18n -- English + Arabic with automatic RTL layout
  • Zero backend -- everything runs client-side

Supported Formats

| Category | Formats | |----------|---------| | Tabular | Parquet, CSV, TSV, JSONL, NDJSON | | Geo vector | GeoParquet, GeoJSON, Shapefile, GeoPackage, FlatGeobuf | | Geo raster | COG, PMTiles, Zarr v2/v3 | | Point cloud | COPC, LAZ, LAS | | Notebooks | Jupyter (.ipynb), marimo | | Code | 30+ languages (Python, TS, Rust, Go, SQL...) | | Documents | Markdown, PDF, text, logs | | Media | Images, video, audio | | 3D | GLB, glTF, OBJ, STL, FBX | | Archives | ZIP, TAR, GZ, 7Z, RAR | | Database | DuckDB, SQLite |

npm Packages

Two packages are published for downstream use:

@walkthru-earth/objex -- Full Svelte 5 Library

Components, stores, and utilities for building geospatial storage explorers.

npm install @walkthru-earth/objex
import { parseStorageUrl, formatFileSize } from '@walkthru-earth/objex';
import { UrlAdapter } from '@walkthru-earth/objex/storage';
import { parseWKB } from '@walkthru-earth/objex/utils/wkb';
import { buildGeoArrowTables } from '@walkthru-earth/objex/utils/geoarrow';
import { readParquetMetadata } from '@walkthru-earth/objex/utils/parquet-metadata';
import { getFileTypeInfo } from '@walkthru-earth/objex/file-icons';

Requires svelte ^5 and @sveltejs/kit ^2 as peer dependencies. Heavy deps (DuckDB, deck.gl, MapLibre, Arrow, hyparquet) are optional peers -- only install what you need.

@walkthru-earth/objex-utils -- Pure TypeScript Utilities

Zero Svelte dependency. Works with any JS framework or Node.js.

npm install @walkthru-earth/objex-utils
import {
  parseStorageUrl,
  parseWKB,
  buildGeoArrowTables,
  readParquetMetadata,
  getFileTypeInfo,
  formatFileSize,
  generateHexDump,
  classifyType
} from '@walkthru-earth/objex-utils';

Exports

| Export path | What | |-------------|------| | @walkthru-earth/objex | All types, utils, storage, query engine | | ./storage | StorageAdapter, UrlAdapter | | ./query | QueryEngine, QueryCancelledError | | ./utils/wkb | parseWKB, toBinary, findGeoColumn | | ./utils/geoarrow | buildGeoArrowTables, normalizeGeomType | | ./utils/storage-url | parseStorageUrl, looksLikeUrl | | ./utils/parquet-metadata | readParquetMetadata, extractEpsgFromGeoMeta | | ./utils/format | formatFileSize, formatDate, getFileExtension | | ./utils/hex | generateHexDump | | ./utils/column-types | classifyType, typeColor, typeBadgeClass | | ./file-icons | getFileTypeInfo, getDuckDbReadFn, getViewerKind | | ./types | FileEntry, Connection, Tab, WriteResult, Theme |

Quick Start (Development)

pnpm install
pnpm dev          # http://localhost:5173

Contributing

See CONTRIBUTING.md for development setup, architecture, geospatial pipeline docs, and viewer checklist.

License

CC BY 4.0 -- [email protected]