s3-url
v0.2.2
Published
Go between URLs and AWS options objects for S3.
Downloads
1,024
Readme
s3-url
Go between URLs and AWS options for S3.
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');