parse-aws-s3-url
v1.0.1
Published
Parse an S3 URL
Downloads
1,202
Readme
parse-aws-s3-url
Parse an S3 URL and returns a suitable object for using with AWS SDK methods.
Install
$ npm install parse-aws-s3-url
Usage
const parseS3Url = require('parse-aws-s3-url');
const parts = parseS3Url('s3://my-bucket/path/to/my/file.png');
//=> parts = {Bucket: 'my-bucket', Key: 'path/to/my/file.png'}
License
MIT Licensed. Copyright (c) Alexis Kofman 2018.