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.
|
|
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 |
||||
|
|
|
In fact aws2js supports listing of objects in a bucket on a low level via
The |
||||
|
|
|
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 |
|||
|
|
|
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:
If you're listing fewer than 1000 files a single page will work:
|
|||
|
|