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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@efesoroglu/whatsappjs

v1.1.3

Published

WhatsappJS is a library where you can create bots and answering machines using the 2Chat API!

Downloads

9

Readme

WhatsappJS is a library where you can create bots and answering machines using the 2Chat API!

Installation

You can use yarn or npm module installers to download WhatsappJS module.

On NPM

npm install @efesoroglu/whatsappjs

On Yarn

yarn add @efesoroglu/whatsappjs

Getting Started

  • If you haven't already, you need to create a 2Chat account. You can do that here.

  • After finishing creating your account, you will need to connect a channel we support. You can do that in the channels section.

  • Finally, get an existing API key or create a new one to run the examples showcased in the tutorials. You can do that inside your user profile on 2Chat.

2Chat API Access Screen

Taken from 2Chat official API documentation. For more information, please visit 2Chat.

Starting your Client

To start your client, you first need to call the WhatsappJS class using your 2Chat API Key and your Channel phone number.

Below is an example:


import { WhatsappJS } from '@efesoroglu/whatsappjs'

  

const client = new WhatsappJS("<your-api-key>", "<channel-phone-number>");

  

client.start();

Finally, you can now listen for the ready event and see that your bot has started.

Below is an example:


import { WhatsappJS } from '@efesoroglu/whatsappjs'

const client = new WhatsappJS("<your-api-key>", "<channel-phone-number>");

client.once('ready', (client) => {
	console.log(`The bot started with the name ${client.client_name} (${client.phone_number})!`);
});

  

client.start();

Webhook Listener

If you want to receive incoming and outgoing messages, you need to install Webhook Listener. We have listed the steps for this respectively:

  • You need to obtain a tunnel address via NGROK. How do I do it?

  • You need to call and configure the webhookServer class in the WhatsappJS class.

An example is given below.


import { WhatsappJS } from '@efesoroglu/whatsappjs'

const client = new WhatsappJS("<your-api-key>", "<channel-phone-number>");

client.webhookServer({
	port: 8080,
	events: ["whatsapp.message.new"],
	host_name: "https://<your_sub>.ngrok-free.app",
});

  

client.once('ready', (client) => {
	console.log(`The bot started with the name ${client.client_name} (${client.phone_number})!`);
});

  

client.start();

Public Directory Section

You can listen to the public folder by specifying a public object in the webhookListener function. With this feature, you can make your transfers from your public folder without requiring an additional intermediate server when sending images, files, etc. over whatsapp.

An example is given below.

import { WhatsappJS } from '@efesoroglu/whatsappjs'

  

const client = new WhatsappJS("<your-api-key>", "<channel-phone-number>");

client.webhookServer({
	port: 8080,
	events: ["whatsapp.message.new"],
	host_name: "https://<your_sub>.ngrok-free.app",
	public: {
		name: "/public" // this is public path on your hostname. For example: https://<your_sub>.ngrok-free.app/public
		path: "path/to/public/dir" // this is public files dir
	}
});

As you can see, the Events class is called and the Events in it are selected. You can take a look at Documentation to learn which Event does what.