Simple wrapper for globelabs charge api
npm install globelabs-charging
var Charge = require('globelabs-charging');
var charge = Charge(token);
var options = {
amount: '1.00',
subscriberMobile: '09151111111',
referenceCode: '001',
description: 'hello'
};
charge.send(options, function(err, transaction) {
//do things here
});
see: globelabs-api for charging docs