
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
wacloudapi
Advanced tools
This library is a Node.js wrapper for the Whatsapp Cloud API. It simplifies the process of interacting with the API by handling request and response formatting, authentication, and providing easy-to-use methods for common API operations.
(Give star if you like it :)
You can install the package using npm or Yarn:
npm install wacloudapi
or
yarn add wacloudapi
First, import the required classes from the package:
const { Message, WAParser, WebhookServer } = require('wacloudapi);
Create a new Message
instance with your API credentials:
const message = new Message(apiVersion, phoneNumberId, accessToken);
You can now use the various methods provided by the Message
class to send messages:
message.sendTextMessage(recipientPhoneNumber, messageContent);
Create a new WebhookServer
instance and specify the desired port and whether to use ngrok:
const webhookServer = new WebhookServer(port, useNgrok, ngrokAuthToken);
Add a listener for incoming messages:
webhookServer.on('message', (message) => {
console.log('Received message:', message);
});
Add a route for webhook verification:
webhookServer.Verification(callbackUrl, verificationToken);
Start the webhook server:
webhookServer.start();
The WAParser
class is used to parse incoming webhook data from the WhatsApp Business API.
Returns the parsed message object depending on the type of message contained in the received webhook data.
const parse = new WAParser(WebhookData);
// parse message
const parsedMessage = parse.parseMessage();
The NotificationParser
class is used to parse incoming webhook data from the WhatsApp Business API.
Returns the parsed message object depending on the type of message contained in the received webhook data.
const parse = new NotificationParser(WebhookData);
// parse message
const parsedMessage = parse.parseNotification();
For detailed information on available methods and how to use them, please refer to the documentation.
Contributions are welcome! If you'd like to contribute, please follow these steps:
We appreciate any help and feedback!
Email : cp@imtaqin.id
This project is licensed under the MIT License. See the LICENSE file for more information.
FAQs
WhatsApp Cloud API Wrapper
The npm package wacloudapi receives a total of 16 weekly downloads. As such, wacloudapi popularity was classified as not popular.
We found that wacloudapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.