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

@zkpassport/sdk

v0.17.1

Published

Privacy-preserving identity verification using passports and ID cards

Readme

ZKPassport SDK

Privacy-preserving identity verification using passports and ID cards.

Installation

npm install @zkpassport/sdk

How to use

For a drop-in QR card or verify button that wraps all of this, see @zkpassport/ui.

import { ZKPassport, EU_COUNTRIES } from "@zkpassport/sdk"

// Replace with your domain
const zkPassport = new ZKPassport("demo.zkpassport.id")

// Specify your app name, logo and the purpose of the request
// you'll send to your visitors or users
const queryBuilder = await zkPassport.request({
  name: "ZKPassport",
  logo: "https://zkpassport.id/logo.png",
  purpose: "Prove you are an adult from the EU but not from Scandinavia",
  // Optional: ties the user's unique identifier to a use case;
  // by default it is tied to your domain only
  scope: "eu-adult-not-scandinavia",
})

// Build the query; done() returns the request URL and the progress callbacks.
// Here: disclose the first name, prove 18+, prove EU nationality but not Scandinavian
// (Norway is already excluded — it is not in the EU)
const {
  url,
  requestId,
  onRequestReceived,
  onGeneratingProof,
  onProofGenerated,
  onSuccess,
  onReject,
  onError,
} = queryBuilder
  .disclose("firstname")
  .gte("age", 18)
  .in("nationality", EU_COUNTRIES)
  .out("nationality", ["Sweden", "Denmark"])
  .done()

// Generate a QR Code with the url and let your user scan it
// or transform it into a button if the user is on their phone

onRequestReceived(() => {
  // The user scanned the QR code or opened the link; the request is now on their phone
  console.log("Request received")
})

onGeneratingProof(() => {
  // The user accepted the request and the proof is being generated
  console.log("Generating proof")
})

// You probably don't need to use this callback
// It reports the progress as the proofs are generated one by one;
// the full set arrives in onSuccess
onProofGenerated(({ proof, vkeyHash, version, name }) => {
  // One of the proofs has been generated
  console.log("Proof generated", proof)
  console.log("Verification key hash", vkeyHash)
  console.log("Version", version)
  console.log("Name", name)
})

// That's the callback you're looking for
onSuccess(({ proofs, result }) => {
  // All the proofs have been generated and the result is available
  console.log("firstname", result.firstname.disclose.result)
  console.log("age over 18", result.age.gte.result)
  console.log("nationality in EU", result.nationality.in.result)
  console.log("nationality not from Scandinavia", result.nationality.out.result)
  // You can also retrieve what were the values originally requested
  console.log("age over", result.age.gte.expected)
  console.log("nationality in", result.nationality.in.expected)
  console.log("nationality not in", result.nationality.out.expected)
  // The proofs are NOT verified at this point. A result checked in the browser
  // can be tampered with, so send the proofs and the result to your backend
  // and verify them there (see "Verifying the proofs" below)
  fetch("/api/register", { method: "POST", body: JSON.stringify({ proofs, result }) })
})

The deprecated onResult callback still verifies the proofs for you and returns a verified flag along with the uniqueIdentifier, but a flag delivered to the browser cannot be trusted. Use onSuccess and verify on your backend instead.

Verifying the proofs

On your backend, recreate the original query so a tampered request cannot pass, then verify the proofs you received:

import { ZKPassport, EU_COUNTRIES } from "@zkpassport/sdk"

const zkPassport = new ZKPassport("demo.zkpassport.id")

const { query } = zkPassport
  .createQuery()
  .disclose("firstname")
  .gte("age", 18)
  .in("nationality", EU_COUNTRIES)
  .out("nationality", ["Sweden", "Denmark"])
  .done()

const { verified, uniqueIdentifier } = await zkPassport.verify({
  proofs,
  originalQuery: query,
  queryResult: result,
  scope: "eu-adult-not-scandinavia",
})
if (!verified) return { registered: false }

// The unique identifier stays the same for the same ID, domain and scope,
// so it can act as the account key: store it in your DB with a uniqueness
// constraint, and a duplicate means this person already has an account
await db.users.insert({ zkpassportId: uniqueIdentifier })
return { registered: true }

verify() checks the proofs locally and defers to the ZKPassport verifier API when the local result is not verified. Set verifierMode to "local" or "api" to force one.

Using with Next.js

Request the proofs in the browser (with the "How to use" example above, or the drop-in card/button from @zkpassport/ui), then send them from onSuccess to an API route that verifies them:

onSuccess(async ({ proofs, result }) => {
  await fetch("/api/register", { method: "POST", body: JSON.stringify({ proofs, result }) })
})

App Router: app/api/register/route.ts

import { NextResponse } from "next/server"
import { ZKPassport } from "@zkpassport/sdk"

const zkPassport = new ZKPassport("demo.zkpassport.id") // Replace with your domain

export async function POST(request: Request) {
  const { proofs, result } = await request.json()

  // Recreate the original query so a tampered request cannot pass
  const { query } = zkPassport.createQuery().gte("age", 18).done()

  const { verified, uniqueIdentifier } = await zkPassport.verify({
    proofs,
    originalQuery: query,
    queryResult: result,
    scope: "age-check",
  })
  if (!verified) return NextResponse.json({ registered: false })

  // Store uniqueIdentifier in your DB as the user's key
  return NextResponse.json({ registered: true })
}

Working on the SDK

The SDK lives in the zkpassport-packages monorepo:

git clone https://github.com/zkpassport/zkpassport-packages.git
cd zkpassport-packages
bun install
cd packages/zkpassport-sdk
bun test

Simulate Websocket Messages

Simulate mobile websocket messages: bun run scripts/simulate.ts mobile

Simulate frontend websocket messages: bun run scripts/simulate.ts frontend

Security

ZKPassport has undergone multiple internal audits, but it has not yet had an external audit.