s3-upload-stream icon indicating copy to clipboard operation
s3-upload-stream copied to clipboard

A Node.js module for streaming data to Amazon S3 via the multipart upload API

Results 23 s3-upload-stream issues
Sort by recently updated
recently updated
newest added

i see this will probably get fixed soon as you [won't be overriding the default end method anymore](https://github.com/nathanpeck/s3-upload-stream/issues/32#issuecomment-69099110) but here are a couple of issues i've noticed: - `.end()` doesn't...

Error in passing SSECustomerKey because they aren't passed into uploadPart. ``` diff --git a/lib/s3-upload-stream.js b/lib/s3-upload-stream.js index 3e83ab3..a67590f 100644 --- a/lib/s3-upload-stream.js +++ b/lib/s3-upload-stream.js @@ -238,6 +238,9 @@ Client.prototype.upload = function (destinationDetails,...

If you have a `upload` object like in the documentation example, you can write some data like this: ``` upload.write("Hello World") upload.end() ``` After that, you will receive a series...