Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any Amazon S3 client library for Node.js that allows listing of all files in S3 bucket?

The most known aws2js and knox don't seem to have this functionality.

share|improve this question
I would ask the author if he could implement it in aws2js. I think it would be very easy to do and he has been recently active in the project. Or if you are able, implement it yourself. – Fantius Feb 24 '12 at 20:44
You can also implement this specific request through their REST API until there is support in one of the libraries. – Viccari Feb 25 '12 at 1:41

4 Answers

The awssum package should be able to do that easily. Check out the S3 example for it here: https://github.com/appsattic/node-awssum/tree/master/examples/amazon/s3/list-objects.js

share|improve this answer
up vote 3 down vote accepted

In fact aws2js supports listing of objects in a bucket on a low level via s3.get() method call. To do it one has to pass prefix parameter which is documented on Amazon S3 REST API page:

var s3 = require('aws2js').load('s3', awsAccessKeyId, awsSecretAccessKey);    
s3.setBucket(bucketName);

var folder = encodeURI('some/path/to/S3/folder');
var url = '?prefix=' + folder;

s3.get(url, 'xml', function (error, data) {
    console.log(error);
    console.log(data);
});

The data variable in the above snippet contains a list of all objects in the bucketName bucket.

share|improve this answer

Listing through objects is supported by the official AWS SDK for Node.js

https://github.com/aws/aws-sdk-js

Here is the API documentation http://docs.amazonwebservices.com/AWSJavaScriptSDK/latest/AWS/S3/Client.html#listObjects-property

share|improve this answer

Published knox-copy when I couldn't find a good existing solution. Wraps all the pagination details of the Rest API into a familiar node stream:

var knoxCopy = require('knox-copy');

var client = knoxCopy.createClient({
  key: '<api-key-here>',
  secret: '<secret-here>',
  bucket: 'mrbucket'
});

client.streamKeys({
  // omit the prefix to list the whole bucket
  prefix: 'buckets/of/fun' 
}).on('data', function(key) {
  console.log(key);
});

If you're listing fewer than 1000 files a single page will work:

client.listPageOfKeys({
  prefix: 'smaller/bucket/o/fun'
}, function(err, page) {
  console.log(page.Contents); // <- Here's your list of files
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.