0.2.2 • Published 9 years ago

s3-url v0.2.2

Weekly downloads
937
License
CC0-1.0
Repository
github
Last release
9 years ago

s3-url

Go between URLs and AWS options for S3.

build status coverage license version downloads

dependencies dev-dependencies peer-dependencies

Sometimes you just need to convert an s3://bucket/key to something you can feed into AWS. This library has you covered.

var s3Url = require('s3-url');
s3Url.optionsToURL({ Bucket: 'bucket', Key: 'key' });
var s3Url = require('s3-url');
s3Url.urlToOptions('s3://bucket/key');