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

@identsphere/verify

v0.2.0

Published

Verify IdentSphere access tokens locally in your backend — JWKS-cached RS256 verification with zero per-request network hop. Node, Workers, Deno, Bun. Includes Express/Connect middleware.

Readme

@identsphere/verify

Verify IdentSphere access tokens locally in your backend — no per-request call to the auth server. It fetches the issuer's JWKS once (cached, with key-rotation + a refetch cooldown handled by jose) and verifies the RS256 JWT in-process. Works in Node, Deno, Bun, and Cloudflare Workers.

This is how you do backend auth at scale — exactly like validating an Auth0 or Clerk token: the hot path is local crypto, and you only ever call the auth server for the login/refresh flows.

npm install @identsphere/verify

Verify a token

import { createTokenVerifier } from "@identsphere/verify";

// Create ONCE per process and share it (the JWKS cache lives inside).
const verifier = createTokenVerifier({
  issuer: "https://auth.example.com",
  audience: "my-api", // optional; pair with the server's IDENTSPHERE_TOKEN_AUDIENCE
});

const claims = await verifier.verify(token); // throws TokenVerificationError on failure
// { sub, org, email, aal, iss, exp, ... } — no network hop

TokenVerificationError.reason is one of expired, invalid_signature, invalid_claims, malformed, jwks_unavailable.

Express / Connect middleware

import { requireAuth } from "@identsphere/verify/express";

app.use(requireAuth({ config: { issuer: "https://auth.example.com", audience: "my-api" } }));

app.get("/me", (req, res) => {
  res.json({ userId: req.identsphere.sub, org: req.identsphere.org });
});

req.identsphere carries the verified claims. A missing/invalid token ends the request with 401 (or 503 if the JWKS is unreachable). Pass required: false for optional auth (continues with req.identsphere undefined).

Config

| Option | Default | Purpose | | --- | --- | --- | | issuer | — | IdentSphere issuer URL; the token's iss must equal it. | | jwksUri | ${issuer}/.well-known/jwks.json | Override the JWKS location. | | audience | (unchecked) | Required aud; pair with IDENTSPHERE_TOKEN_AUDIENCE. | | cacheMaxAgeMs | 600000 | How long a fetched JWKS is reused. | | cooldownMs | 30000 | Min gap between unknown-kid refetches (flood throttle). | | clockToleranceSec | 5 | exp/nbf skew tolerance. |

License

BUSL-1.1 © Pradumna Gautam.