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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@watoolkit/whatsapp-node

v0.1.0

Published

WhatsApp Cloud API SDK for Node.js

Downloads

13

Readme

@watools/whatsapp-sdk

A modern, lightweight TypeScript SDK for the WhatsApp Cloud API with full type safety and comprehensive webhook handling.

Features

  • � Full TypeScript support
  • 📦 Tiny bundle size
  • 🔄 Complete webhook handling
  • 💬 All message types supported:
    • Text messages
    • Media messages (image, video, audio, documents)
    • Template messages
    • Interactive messages (buttons, lists)
    • Product messages
    • Location messages
    • Contact cards
    • Stickers
    • Reactions
    • Flow messages
    • Rating messages
  • 🔒 Built-in error handling
  • 📱 Phone number registration management
  • ✨ Zero dependencies

Installation

npm

npm install @watools/whatsapp-sdk

pnpm

pnpm add @watools/whatsapp-sdk

yarn

yarn add @watools/whatsapp-sdk

Quick Start

import { WhatsAppClient } from "@watools/whatsapp-sdk";

// Initialize the client
const client = new WhatsAppClient({
  accessToken: "your_access_token",
  phoneNumberId: "your_phone_number_id",
});

// Send a text message
await client.sendTextMessage("1234567890", "Hello, World!");

// Send a template message
await client.sendTemplate("1234567890", "hello_world", "en", [
  {
    type: "body",
    parameters: [{ type: "text", text: "John" }],
  },
]);

// Send an interactive button message
await client.sendButtonMessage("1234567890", "Please choose an option", [
  { id: "btn1", title: "Yes" },
  { id: "btn2", title: "No" },
]);

Webhook Handling

import { WebhookHandler } from "@watools/whatsapp-sdk";

const webhookHandler = new WebhookHandler();

// Handle text messages
webhookHandler.onMessageType("text", (message) => {
  console.log(`Received text: ${message.text.body}`);
});
// Handle message status updates
webhookHandler.onStatus((status) => {
  console.log(`Message ${status.id} status: ${status.status}`);
});

// Express.js example
app.post("/webhook", express.json(), (req, res) => {
  webhookHandler.handleWebhook(req.body);
  res.sendStatus(200);
});

API Reference

Client Initialization

const client = new WhatsAppClient({
  accessToken: string; // Meta access token
  phoneNumberId: string; // WhatsApp phone number ID
  version?: string; // API version (default: 'v16.0')
  baseUrl?: string; // API base URL (default: 'https://graph.facebook.com')
});

Basic Messages

// Text messages
await client.sendTextMessage(to: string, text: string);

// Media messages
await client.sendMedia(
  to: string,
  type: "image" | "video" | "audio" | "document",
  media: {
    id?: string;
    link?: string;
    caption?: string;
  }
);

// Location messages
await client.sendLocation(
  to: string,
  latitude: number,
  longitude: number,
  name?: string,
  address?: string
);

// Contact messages
await client.sendContact(to: string, contacts: Array<Contact>);

// Reactions
await client.sendReaction(to: string, messageId: string, emoji: string);

Interactive Messages

// Button messages
await client.sendButtonMessage(
  to: string,
  body: string,
  buttons: Array<{ id: string; title: string }>,
  header?: Header,
  footer?: Footer
);

// List messages
await client.sendListMessage(
  to: string,
  body: string,
  buttonText: string,
  sections: Array<Section>,
  header?: Header,
  footer?: Footer
);

// Product messages
await client.sendProductMessage(
  to: string,
  catalogId: string,
  productRetailerId: string,
  body?: string,
  footer?: Footer
);

Template Messages

await client.sendTemplate(
  to: string,
  templateName: string,
  languageCode: string,
  components?: Array<TemplateComponent>
);

Error Handling

The SDK throws WhatsAppError for API-related errors:

try {
  await client.sendTextMessage("1234567890", "Hello");
} catch (error) {
  if (error instanceof WhatsAppError) {
    console.error("WhatsApp API error:", error.message);
    console.error("Status code:", error.statusCode);
    console.error("Error details:", error.details);
  }
}

License

MIT © WATools