0.0.18 β€’ Published 2 months ago

wh-wrapper v0.0.18

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

wh-wrapper

npm License: MIT Issues

wh-wrapper is a robust and developer-friendly wrapper library for the WhatsApp Cloud API, meticulously crafted to streamline the process of building powerful and feature-rich WhatsApp bots. πŸ€– With this library, you can seamlessly integrate WhatsApp messaging capabilities into your applications, unlocking a world of possibilities for engaging with your users. πŸ’¬

Features πŸš€

Lightning-fast: ⚑ Leveraging modern JavaScript and optimized performance, wh-wrapper ensures blazing-fast message delivery and processing.

Seamless Messaging: πŸ“¨ Send and receive messages with ease, supporting rich media attachments, interactive buttons, and more.

Webhook Support: 🎣 Receive real-time updates and incoming messages through webhooks, enabling instant responsiveness.

TypeScript Friendly: 🦾 Enjoy the benefits of type safety and better tooling with comprehensive TypeScript support.

Template Management: πŸ—ƒοΈ Create and manage reusable message templates for consistent and streamlined communication.

Comprehensive Documentation: πŸ“š Get up and running quickly with detailed guides, examples, and extensive API documentation.

Installation πŸ“¦

You can install wh-wrapper using npm or your preferred package manager:

npm install wh-wrapper

Quick Start ⏩

Initialize a new WhatsApp client instance and start sending and receiving messages:

import Client from 'wh-wrapper';
// or if using require:
// const Client = require('wh-wrapper');

const wh = new Client(phoneID, token);

wh.on('messages', async (message) => {
  console.log(message); // Handle incoming messages here
});

const messageId = await wh.sendMessage(recipientPhoneNumber, 'Hello, World!');

Webhook Example πŸ•ΈοΈ

import Client from 'wh-wrapper';
// or if using require:
// const Client = require('wh-wrapper');

const verifyToken = 'your_verify_token';

const wh = new Client(phoneID, token, verifyToken);

wh.on('messages', async (message) => {
  console.log(message); // Handle incoming messages here
});
wh.on("statuses", async (status) => {
  console.log(status); // Handle incoming statuses here
});

For more detailed instructions and advanced usage, please refer to the documentation. πŸ“–

Requirements βœ…

To-Do πŸ“‹

  • Add support for Flows βš™οΈ
  • Enhance incoming message types (TypeScript) 🏷️
  • Expand documentation and examples πŸ“–

License πŸ“„

wh-wrapper is licensed under the MIT License.

Contributing 🀝

Contributions are welcome! πŸ™Œ If you find any issues or have ideas for improvements, please open an issue or submit a pull request. For major changes, it's recommended to discuss them first by creating an issue.

Active Development 🚧

Please note that wh-wrapper is under active development, and breaking changes may be introduced as new features and improvements are implemented. However, the library is already usable and comes with comprehensive documentation (which is also a work in progress). πŸ”¨

--- Made with ❀️ and πŸ”¨ by Elhanan

0.0.18

2 months ago

0.0.17

2 months ago

0.0.14

2 months ago

0.0.15

2 months ago

0.0.16

2 months ago

0.0.10

2 months ago

0.0.11

2 months ago

0.0.12

2 months ago

0.0.13

2 months ago

0.0.9

2 months ago

0.0.8

3 months ago

0.0.7

3 months ago

0.0.1

3 months ago

0.0.5

3 months ago

0.0.4

3 months ago

0.0.3

3 months ago

0.0.2

3 months ago

1.0.0

3 months ago