payoneer-client
v0.0.1
Published
A Payoneer Client that actually works. Default SDK gave cancer
Readme
Payoneer
Description
This is a wrapper for the Payoneer API. Also converts all the default XML responses from Payoneer to Javascript objects, so you can handle the responses with ease.
Installation
git clone https://github.com/VoxFeed/payoneer
npm install
Basic Usage
Payoneer = require('payoneer');
config = require('/path/to/config.json');
payoneer = new Payoneer(config);
payoneer.getVersion(function(error, data) {
if (error) return console.error(error);
console.log(data);
});Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D
History
Payoneer's SDK is AWFUL so a wrapper was right and necessary.
Credits
TODO: Marvelous people goes here
License
TODO: Awesome license goes here
