AWS s3 progress bar in multipart upload node.js aws-sdk

时间:2017-11-13 06:49:53

标签: node.js amazon-web-services file-upload amazon-s3 electron

I am trying to identify a way to track upload progress for a bunch of file being uploaded using node.js aws-sdk multipart upload.

I was able to divide all files in parts and upload them one by one, But the event httpUploadProgress provides the whole partSize once upload starts, It was not providing live bytes uploaded to aws s3 as in putObject method.

1 个答案:

答案 0 :(得分:0)

您是我在Java中的工作方式,也许这可以为您提供帮助

WebSocketConnectionManager connectionManager = new WebSocketConnectionManager(
    new StandardWebSocketClient(), webSocketHandler, "wss://localhost:8080/ws/");

connectionManager.start();