parse-s3-bucket-key
v0.0.1
Published
Parse Bucket and Key from an S3 object link.
Downloads
127
Readme
parse-s3-bucket-key
Parse Bucket and Key from an S3 object link.
Installation
npm install parse-s3-bucket-key
Usage
// It also supports "s3://" protocol: 's3://bucket-name/file/path/sample.json';
const {Bucket, Key} = parseS3BucketKey('https://s3.amazonaws.com/bucket-name/file/path/sample.json');
// Result:
{
Bucket: 'bucket-name',
Key: 'file/path/sample.json'
}