1.0.1 • Published 5 years ago

parse-aws-s3-url v1.0.1

Weekly downloads
42
License
MIT
Repository
github
Last release
5 years ago

parse-aws-s3-url Build Status

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.