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

@openparachute/surface-client

v0.1.0

Published

Shared browser-side library for Parachute apps — OAuth (PKCE + DCR), vault REST client, token storage, service-worker reload helper, vault-id + runtime tenancy helpers.

Readme

@openparachute/app-client

Shared browser-side library for Parachute apps hosted under @openparachute/app.

Each hosted UI under parachute-app would otherwise re-implement OAuth + vault REST + token storage from scratch — Notes did this; the Gitcoin Brain UI did its own. This library extracts the canonical pattern so future apps depend on one well-tested implementation. Same trajectory as @openparachute/scope-guard for resource-server JWT validation.

Surface

import {
  ParachuteOAuth,
  VaultClient,
  loadToken, saveToken, clearToken,
  reloadAfterServiceWorkerUpdate,
  vaultIdFromUrl, normalizeVaultUrl,
} from "@openparachute/app-client";

| Module | Surface | |-------------------------------|---------------------------------------------------------------------------------| | oauth | ParachuteOAuth driver class — PKCE + same-hub auto-trust | | vault-client | VaultClient REST client with auto-refresh on 401 + structured errors | | token-storage | loadToken / saveToken / clearToken / clearAllTokensForApp | | sw-reload | reloadAfterServiceWorkerUpdate — PWA-mode SW reload helper | | vault-id | vaultIdFromUrl / normalizeVaultUrl — canonical URL ↔ storage-key mapping |

See the source in src/ for the full surface; everything is re-exported from the barrel.

OAuth quick-start

const oauth = new ParachuteOAuth({
  appName: "my-app",     // matches the meta.json `name`
  hubUrl: window.location.origin,
});

// 1. Boot — read our client_id from the app daemon:
const { client_id } = await oauth.getClientId();

// 2. Begin the flow (caller chooses how to navigate):
const { authorizeUrl } = await oauth.beginFlow({
  vaultName: "default",
  redirectUri: `${window.location.origin}/app/my-app/oauth/callback`,
});
window.location.assign(authorizeUrl);

// 3. After the redirect-back, on the callback page:
const url = new URL(window.location.href);
const code = url.searchParams.get("code")!;
const state = url.searchParams.get("state")!;
await oauth.handleCallback(code, state, "default");

// 4. Read the token whenever you need it:
const stored = oauth.getToken("default");
if (stored) {
  const vault = new VaultClient({
    vaultUrl: stored.vault ? `${hubUrl}/vault/${stored.vault}` : vaultUrl,
    accessToken: stored.accessToken,
    onAuthError: async () => {
      // refresh on 401, return fresh token or null
      if (!stored.refreshToken) return null;
      const { token } = await oauth.refreshAccessToken(stored.refreshToken, "default");
      return token.access_token;
    },
  });
  const notes = await vault.queryNotes({ tag: "x" });
}

License

AGPL-3.0.