1.0.0 • Published 8 years ago

textware-api v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

textware-api

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install textware-api --save

Usage

var TextWare = require('textware-api').create({
  username: 'test',
  password: '123',
  source: 'test'
});

TextWare.sendSMS({
  recipient: '94761234567',
  message: 'This is a test message.'
}, function(error, response) {
  if(error) throw error;
  console.log(response);
});

Dependencies

  • node-uuid: Rigorous implementation of RFC4122 (v1 and v4) UUIDs.
  • unirest: Simplified, lightweight HTTP client library
  • url-join: Join urls and normalize as in path.join.

Dev Dependencies

None

License

ISC