Hi Stephen,

On 15 October 2012 12:33, Stephen Handley <[email protected]> wrote:
> node-awssum looks to have good coverage but high footprint due to its
> monolithic approach ("Node.js modules for talking to lots of Web Service
> APIs.")

The good news is that AwsSum lazily loads whatever modules you need.
So for example if you need S3 you load up the awssum.js, amazon.js and
s3.js files - all of the rest are not loaded unless you specifically
do it. :) I hope that eases your worry about the footprint - in
reality it's very little code loaded. e.g.

var awssum = require('awssum');
var amazon = awssum.load('amazon/amazon');
var S3 = awssum.load('amazon/s3').S3;

Also, AwsSum has a new docs site so please take a look here. It
desperately in needs more examples but I am adding those over time.
Also the docs are now being generated from the actual code (to save me
lots of time) so everything should be in order.

* http://awssum.io/

Feel free to email me if you have any questions - I'm more than happy
to help (for anyone, not just you Stephen). :)

Cheers,
Andy

-- 
Andrew Chilton
e: [email protected]
w: http://appsattic.com/
t: https://twitter.com/andychilton

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to