Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

globelabs-sms

BernardTolosajr26MIT0.0.3

simple globelabs SMS wrapper

globelabs

readme

globelabs-sms Build Status

Simple wrapper for globelabs SMS api

Installation

npm install globelabs-sms

Setup

var SMS = require('globelabs-sms');
//sending sms
var sms = SMS({senderAddress: '1234', token: 'SuCbrxI6n75bFko5ajI_lx5EK2ticlOS1VAI8fgaAy4'});
sms.send({address: '91592341234',message: 'hello from npm'}, function(err, response) {
  console.log(response);
});

see: globelabs-api for sms docs