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

@clientpad/whatsapp

v0.2.0

Published

WhatsApp webhook handler, AI assistant, and Nigerian payment utilities for ClientPad.

Readme

@clientpad/whatsapp

Fetch-standard WhatsApp webhook handler and AI assistant utilities for ClientPad. Fetch-compatible WhatsApp Cloud API helpers for ClientPad. The package is designed for self-hosted runtimes (Node, Workers, Bun, Deno-compatible servers) by accepting injected fetch, ClientPad credentials, Meta WhatsApp credentials, and webhook verification tokens.

Install

pnpm add @clientpad/whatsapp @clientpad/core @clientpad/sdk

Environment

Set these values in your hosting platform:

CLIENTPAD_BASE_URL="https://clientpad.example.com"
CLIENTPAD_API_KEY="cp_live_..."
WHATSAPP_ACCESS_TOKEN="EAAG..."
WHATSAPP_PHONE_NUMBER_ID="1234567890"
WHATSAPP_VERIFY_TOKEN="choose-a-long-random-token"

Use WHATSAPP_VERIFY_TOKEN as the verify token when configuring the Meta webhook subscription.

Minimal webhook handler

import { createWhatsAppWebhookHandler } from "@clientpad/whatsapp";

export const handler = createWhatsAppWebhookHandler({
  databaseUrl: process.env.DATABASE_URL,
  workspaceId: process.env.CLIENTPAD_WORKSPACE_ID!,
  verifyToken: process.env.WHATSAPP_VERIFY_TOKEN,
  aiProvider: optionalProvider,
});

If aiProvider is omitted, the handler uses deterministic keyword routing for booking, quote, and payment intents. const handleWhatsAppWebhook = createWhatsAppWebhookHandler({ verifyToken: process.env.WHATSAPP_VERIFY_TOKEN!, whatsAppAccessToken: process.env.WHATSAPP_ACCESS_TOKEN!, phoneNumberId: process.env.WHATSAPP_PHONE_NUMBER_ID!, fetch, async onMessage({ message, contact }) { console.log("Incoming WhatsApp message", { from: message.from, type: message.type, name: contact?.profile?.name, }); }, });

export async function POST(request: Request) { return handleWhatsAppWebhook(request); }

export async function GET(request: Request) { return handleWhatsAppWebhook(request); }


## Create ClientPad leads from WhatsApp messages

```ts
import { createServiceBusinessFlow } from "@clientpad/whatsapp";

export const handleWhatsAppWebhook = createServiceBusinessFlow({
  clientpadBaseUrl: process.env.CLIENTPAD_BASE_URL!,
  clientpadApiKey: process.env.CLIENTPAD_API_KEY!,
  verifyToken: process.env.WHATSAPP_VERIFY_TOKEN!,
  whatsAppAccessToken: process.env.WHATSAPP_ACCESS_TOKEN!,
  phoneNumberId: process.env.WHATSAPP_PHONE_NUMBER_ID!,
  fetch,
  source: "whatsapp",
  defaultServiceInterest: "general-enquiry",
  replyText: "Thanks for contacting us. Our team will follow up shortly.",
});

The service-business flow parses incoming webhook messages, normalizes Nigerian phone numbers to +234... format for ClientPad leads, creates a lead through the ClientPad SDK, and optionally sends an acknowledgement through the WhatsApp Cloud API.

Sending messages

import {
  createReplyButtonsMessage,
  sendWhatsAppMessage,
} from "@clientpad/whatsapp";

await sendWhatsAppMessage({
  whatsAppAccessToken: process.env.WHATSAPP_ACCESS_TOKEN!,
  phoneNumberId: process.env.WHATSAPP_PHONE_NUMBER_ID!,
  fetch,
  to: "+2348012345678",
  message: createReplyButtonsMessage({
    body: "What service do you need?",
    buttons: [
      { id: "quote", title: "Get quote" },
      { id: "support", title: "Support" },
    ],
  }),
});

Payload helpers

Use parseWhatsAppWebhookPayload(payload) when your framework already parses JSON bodies. Use verifyMetaWebhook({ mode, token, challenge, verifyToken }) if you need to handle Meta's webhook verification outside the provided request handler.