New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@kelchy/sms

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kelchy/sms

## This module wraps helper functions around Short Messaging Service (SMS) functionality to simplify development

latest
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

SMS

This module wraps helper functions around Short Messaging Service (SMS) functionality to simplify development

  • Requires
axios
@vonage/server-sdk
  • Basic Initialization - Nexmo
const SMS = require('@kelchy/sms')
const key = 'abc123'
const secret = 'abc123'
const sender = 'CompanyA'
const sms = new SMS.Nexmo(key, secret, sender)

depending on situation, "sender" might be overriden by the service provider

  • Basic Initialization - Telna
const SMS = require('@kelchy/sms')
const key = 'abc123'
const secret = 'abc123'
const sender = '14081234567'
const sms = new SMS.Telna(key, secret, sender)

sender must be numeric

  • supported methods
send(destination, msg)

FAQs

Package last updated on 05 Dec 2022

Did you know?

Socket

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