1.0.10 • Published 6 years ago

empty-aws-bucket v1.0.10

Weekly downloads
218
License
MIT
Repository
github
Last release
6 years ago

Empty S3 Bucket

For a given S3 bucket, all objects and their versions will be deleted.

Getting Started

Run

npm install --save empty-s3-bucket

API

The first argument is the bucket name, and the second argument is an optional config object passed to the AWS SDK.

emptyBucket(bucketName, [config]);

Usage

const emptyBucket = require('empty-s3-bucket');

emptyBucket('my-bucket');

const awsConfig = {
    accessKeyId: 'AKID',
    secretAccessKey: 'SECRET',
    region: 'us-west-2'
};

emptyBucket('other-bucket', awsConfig);

Debugging

The AWSJS_DEBUG environment variable enables logging in aws-sdk. If the AWSJS_DEBUG environment variable is set this module will log debug information also.