0.0.3 • Published 2 years ago
wabot-md v0.0.3
Wabot Multi Device
Installation
install using npm
npm install wabot-mdinstall using yarn
yarn add wabot-mdinstall using pnpm
pnpm add wabot-mdUsing library
Using ES6
import * as whatsapp from 'wabot-md'Using CommonJS
const whatsapp = required('wabot-md')Example Using
import * as whatsapp from 'wabot-md'
const session = await whatsapp.startSession('instance123')
await whatsapp.sendTextMessage({
sessionId: "xxxxxx", // session ID
to: "6281234567890", // always add country code (ex: 62)
text: "Hi There, This is Message from Server!", // message you want to send
})