bucket-list

1.0.0 • Public • Published

Bucket List

Get a file list from an Amazon S3 bucket.

Supports streams and callbacks.

Install

npm install bucket-list

Usage

 
var BucketList = require('bucket-list');
var bucket = BucketList.connect({
  key: 's3-key',
  secret: 's3-secret'
  bucket: 'name-of-the-s3-bucket'
});
 
 
// Stream bucket files
 
var bucketStream = bucket('folder_name');
 
bucketStream.on('data', function (fileNameWithPath) {
  console.log(fileNameWithPath);
});
 
 
// Callback style with bucket files
 
bucket('folder_name', function (err, files) {
  console.log(files);
});

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i bucket-list

    Weekly Downloads

    1

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • scottcorgan