Skip to content

Better API for multipart uploads #73

@nikeee

Description

@nikeee

Currently, it's implemented with their functions mapped to methods of the S3 Client.

Maybe we can design a better API surface that is like S3File.

Maybe something like:

const upload = client.multipartUpload("key");
await upload.uploadPart(uploadId, partNumber, data);
const parts = await upload.parts();
const partsI = await upload.partsIterating();
await upload.complete();
await upload.abort();

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions