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

@zoza/verify

v0.1.0

Published

Zoza Verify SDK. Cryptographically sign outbound messages (SMS, email, WhatsApp) so recipients can prove the sender with one tap. Ed25519 signatures, HTTP wrapper over verify-api.zoza.world.

Downloads

14

Readme

@zoza/verify

Sign your outbound SMS, email, and WhatsApp so recipients can prove the sender. One line of code, no phone-number verification hurdles, no SMS tax, no SIM-swap risk.

npm license

Install

npm install @zoza/verify

Quick start

import { VerifyClient } from '@zoza/verify';

const verify = new VerifyClient({ apiKey: process.env.ZOZA_VERIFY_KEY! });

const signed = await verify.sign({
  channel: 'sms',
  content: 'Your ICICI OTP is 482194. Do not share.',
});

// Send signed.full_message via your SMS gateway:
//   "Your ICICI OTP is 482194. Do not share. [zoza:bid=icici&sig=...&mid=...&ch=sms]"
// Recipient opens zoza.world/verify, pastes the message, gets a green check.

Why

Every bank, exchange, and healthcare app sends OTPs and transactional SMS. Recipients have no way to tell a real message from a phishing copy, and SIM swaps let attackers intercept legitimate traffic. Zoza Verify adds an Ed25519 signature — produced server-side using your registered business key — so recipients can cryptographically verify the sender with one tap.

API

new VerifyClient({ apiKey, apiUrl?, fetch? })

| Option | Type | Notes | |---|---|---| | apiKey | string (required) | Issued at zoza.world/developers/verify. Format vfy_<base64>. | | apiUrl | string | Default https://verify-api.zoza.world. Override for self-host. | | fetch | typeof fetch | For Node <18 or custom request signers. |

verify.sign({ channel, content })

Returns { message_id, channel, signature, compact, signed_at, full_message }.

verify.signBatch({ channel, messages })

Signs up to 1000 messages in one call.

verify.verify({ business_id, channel, content, message_id, signature })

Public endpoint (no API key needed). Returns { valid, business_name?, reason? }.

verify.getRegistry()

Fetches the signed public registry of verified businesses.

Tests

npm install
npm test

Offline mocked tests for speed + determinism. Live round-trip lives in examples/live-api.mjs and requires a real vfy_* key.

License

MIT © Zoza