pgherveou / gulp-awspublish

gulp plugin to publish files to amazon s3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Upload progress

mrzmyr opened this issue Β· comments

Its would be great to have a upload progess or something that indicates the upload while uploading larger files. For now it just logs whens its finished.

Thanks for the great work, keep it up. πŸ‘

May adding something like this (Reference):

var req = s3.putObject(params)
  .on('httpUploadProgress', function (progress) {
    console.log(progress);
  }).send(function (err, data) {
    console.log("FINISHED");
  });

That would be nice indeed!
I dont have the time to work on it but feel free to send me a PR!