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

@simvector/maplibre-protocol

v0.2.0

Published

MapLibre GL JS custom protocol handler for SimVector authenticated tile services.

Readme

@simvector/maplibre-protocol

A lightweight, custom protocol handler for MapLibre GL JS that authenticates vector tile and map style requests against SimVector tile servers using session JWTs.

Built to eliminate the security risk of exposing static API keys in client-side applications.

Installation

npm install @simvector/maplibre-protocol maplibre-gl
# or
yarn add @simvector/maplibre-protocol maplibre-gl
# or
pnpm add @simvector/maplibre-protocol maplibre-gl

Note: maplibre-gl is a peer dependency.

Quick Start

Register the protocol with MapLibre before initializing your map instance. Supply a getToken callback that fetches a valid SimVector session JWT from your application's backend proxy.

import maplibregl from 'maplibre-gl';
import 'maplibre-gl/dist/maplibre-gl.css';
import { registerSimVectorProtocol } from '@simvector/maplibre-protocol';

// 1. Register the protocol
registerSimVectorProtocol(maplibregl, {
  getToken: async () => {
    // Call your backend endpoint where your server-side API key is stored
    const response = await fetch('/api/simvector/token', { method: 'POST' });
    if (!response.ok) {
      throw new Error('Failed to retrieve SimVector map session token');
    }
    const data = await response.json();
    return data.token; // Must return a valid JWT string
  },
});

// 2. Initialize the map as normal with anything calling SimVector leveraging the simvector:// protocol
const map = new maplibregl.Map({
  container: 'map',
  style: 'simvector://styles/aviation-dark-v1.json',
  center: [139.6917, 35.6895], // Tokyo
  zoom: 8,
});

How It Works

  1. URL Rewriting: Any resource requested with simvector:// (e.g., simvector://globe/{z}/{x}/{y}.pbf) is rewritten to target https://tiles.simvector.net/globe/{z}/{x}/{y}.pbf.
  2. Bearer Injection: Attaches the retrieved session JWT to the outgoing request via an Authorization: Bearer <JWT> header.
  3. Smart Refreshing: If the tile server returns 401 Unauthorized, the protocol forces a fresh token retrieval via your getToken function and re-executes the tile request transparently.

API Reference

registerSimVectorProtocol(maplibregl, options)

Registers the protocol with your MapLibre GL JS library instance.

Parameters

| Parameter | Type | Description | | :--- | :--- | :--- | | maplibregl | object | The imported maplibre-gl instance. | | options | SimVectorProtocolOptions | Configuration options for the protocol handler. |

SimVectorProtocolOptions

| Property | Type | Default | Description | | :--- | :--- | :--- | :--- | | getToken | () => Promise<string> | Required | Async callback that returns a valid SimVector JWT string from your application server. | | baseUrl | string | 'https://tiles.simvector.net' | Optional base URL for your SimVector tile host. | | protocolName | string | 'simvector' | Optional custom scheme name registered in MapLibre. |

License

MIT License.# simvector-maplibre-protocol