This library allows access to the Clickatell's SMS API's.
This library is managed by the Node Package Manager
npm install clickatell-sms
All calls are asynchronous and returns a Promise
const clickatell = require('clickatell-sms')(apiKey);
const result = await clickatell.sendMessage(["00000000000"], "My Message");
To run the library test suite just execute npm test
from the library root. Please make sure all tests are passing before pushing back any changes.