Skip to content

Asynchronous Node.js wrapper for the Mediaburst Clockwork SMS API

License

Notifications You must be signed in to change notification settings

1stvamp/node-clockwork

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-clockwork

Install

npm install clockwork

Usage

ClockworkApi = require('clockwork').ClockworkApi;

client = ClockworkApi({key: 'YOUR_API_KEY_HERE'}); // Alternatively you can use username and password

client.getCredit(function(error, credit) {
    console.log(credit);
});

client.sendSms({ To: '44743743445335', Content: 'Test!'}, function(error, resp) {
    console.log(resp);
});

About

Asynchronous Node.js wrapper for the Mediaburst Clockwork SMS API

Resources

License

Stars

Watchers

Forks

Packages

No packages published