minio-js
                                
                                
                                
                                    minio-js copied to clipboard
                            
                            
                            
                        MinIO Client SDK for Javascript
Follow-up of #1296, see comment https://github.com/minio/minio-js/issues/1296#issuecomment-2135726689 The method still may return an empty string when the versioning is disabled on the bucket (that's because the returned `` xml element is...
Hello, I am not sure if this is a bug or not, if it is related to the js client or minio... I got 'S3Error: The request signature we calculated...
I had an issue where this minio client throws a `InvalidArgumentError: Unable to get bucket region for ...` error when trying to retrieve a presigned url. I was so confused...
S3 API can upload a binary file in the body. We need this feature for users to implement slicing and uploading files themselves. https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html
In on-prem scenario, we meed some problems, the case is that If the api `GetBucketLocation` be limited, minio-js cannot work, but [mc](https://github.com/minio/mc) can work https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLocation.html the root cause is that...
` async uploadPart(partConfig: { bucketName: string objectName: string uploadID: string partNumber: number headers: RequestHeaders }) { const { bucketName, objectName, uploadID, partNumber, headers } = partConfig const method = 'PUT'...
The most recent version is significantly broken. The fix has been merged since weeks but to release so far. This is quite a significant breakage. Could we please get a...
Issue: https://github.com/minio/minio-js/issues/1324 Info: Encryption headers are not passed when uploading an object that requires a multipart upload. FYI: Headers are already prepended using `prependXAMZMeta` in the `putObject` function, so it...
## Description I am trying to stream a 111MB xlsx file, using putObject, to MinIO and I am using SSE-C encryption ## Expected Behavior I expect that the file will...