🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

node-skebby-sms

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-skebby-sms

NodeJS wrapper for Skebby SMS Gateway API

1.0.4
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

NodeJS Wrapper for Skebby

Installation

Install the dependencies

npm install

Create a .skebby-config.json file in the root path where you will put your skebby credentials.

You can see an example in the file .skebby-config-example.json

Example

var Skebby = require('node-skebby');

var s = new Skebby();
s.addRecipient('393396803445');
s.addRecipient('39339680344444');

s.addRecipient(['12341341414', '34542542545']);
s.setMessage('Hello World!');

s.send(function(err,data) {
  console.log(err, data);
});

FAQs

Package last updated on 23 Jan 2017

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