https://github.com/paralin/meteor-paypal-ec
PayPal Express Checkout wrapper for Meteor.
https://github.com/paralin/meteor-paypal-ec
Last synced: 12 months ago
JSON representation
PayPal Express Checkout wrapper for Meteor.
- Host: GitHub
- URL: https://github.com/paralin/meteor-paypal-ec
- Owner: paralin
- License: mit
- Created: 2013-04-13T22:33:11.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-05-10T19:57:07.000Z (almost 12 years ago)
- Last Synced: 2025-03-10T22:48:37.741Z (12 months ago)
- Language: JavaScript
- Size: 131 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# awssum
*[AwsSum](http://awssum.io/) (Amazon Web Services API lib) repackaged for Meteor*
## Example usage
var amazon = AWSSum.load('amazon/amazon');
var Ec2 = AWSSum.load('amazon/ec2', 'Ec2');
var ec2 = new Ec2({
'accessKeyId' : accessKeyId,
'secretAccessKey' : secretAccessKey,
'region' : amazon.US_EAST_1
});
Meteor.methods({
describeInstances: function() {
var data = ec2.DescribeInstances();
if (data.error)
throw new Meteor.Error(500, data.error.Body.Response.Errors.Error.Message, data.error);
return data;
}
});
## Working example(s)
### Amazon
https://github.com/possibilities/meteor-awssum/tree/master/examples/amazon