1.0.0 • Published 7 years ago

s3-list-all v1.0.0

Weekly downloads
126
License
ISC
Repository
github
Last release
7 years ago

s3-list-all

get full list response from s3. s3 limits listObjects responses to 1000 entries. you have to recursively call listObjects with the continuation token to get the whole result.

const listAll = require('s3-list-all')({accessKeyId:key,secretAccessKey:secret})

listAll({Bucket:bucket,Prefix:'2017-'},function(err,results){
  // if any requests error we callback with err and undefined result.

  console.log(results)
  console.log(results.length)

  //results is an array of all s3 response.Contents
  /*
  [  
  { Key: '2017-01-01T07:00:00.000.log',
    LastModified: 2017-01-01T07:00:02.000Z,
    ETag: '"0000000000000000000000000000000000-37"',
    Size: 194034009,
    StorageClass: 'STANDARD' },
    ...
  ]
  */
})

api

  • require('s3-list-all')(awsConfig) , default export.
    • pass a config object with at least aws accessKeyId and secretAccessKey. valid config options are in the aws-sdk documentation here.
    • returns function listAll
  • listAll(s3Config,cb)