Socket
Socket
Sign inDemoInstall

zenziva

Package Overview
Dependencies
2
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    zenziva

Zenziva Client (SMS / WhatsApp / Voice Message)


Version published
Maintainers
1
Install size
404 kB
Created

Readme

Source

Zenziva Client for JavaScript / TypeScript

Zenziva provide services to send SMS, WhatsApp, and voice message.

This library written in TypeScript, and it should working properly on Node.js.

If this library not working for you, or you found any kind of bugs, please create a new issue.

Install

npm i zenziva

Usage

The .sms(), .wa(), .voice() methods will return a Promise. You can handle it with .then or async/await.

// import zenziva from 'zenziva'

const zenziva = require('zenziva').default

const z = zenziva('userkey', 'passkey')

// SMS
z.sms('081234567', 'Halo')

// WhatsApp
z.wa('081234567', 'Halo')

// Voice Message
z.voice('081234567', 'Halo')
// Masking
const z = zenziva('userkey', 'passkey', {
  masking: true,
})
// {Sms,WhatsApp} Center
const z = zenziva('userkey', 'passkey', {
  domain: 'domain_name.com',
})

Keywords

FAQs

Last updated on 05 Nov 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc