minio-js
                                
                                
                                
                                    minio-js copied to clipboard
                            
                            
                            
                        MinIO Client SDK for Javascript
Hi everyone, I've encounterd an issue. As I was copying code from examples some of them suggested putting error callback in `putObject` method as 6th argument. TS gives an error,...
This is my code: import * as Minio from 'minio'; const clientOptions: Minio.ClientOptions = { endPoint: 'xxxx', port: xxxx, useSSL: false, accessKey: "xxxx", secretKey: "xxxx", // region: "xxxx", }; const...
## NOTE If this case is urgent, please subscribe to [Subnet](https://min.io/pricing) so that our 24/7 support team may help you faster. I am using presigned URL with this chunk of...
When receive 403 status code for invoke GetBucketLocation api, make alignment with mc client Related issue: https://github.com/minio/minio-js/issues/1337
Retry logic introduced by #1390 can cause surprisingly long delays in uploads. This means that a request that would previously have failed ~immediately could now take 60+ minutes. I would...
It took me a while to figure out, but since upgrading from 8.0.4 to 8.0.5 we see an OOM every time there's a `putObject` or `fPutObject` with a large file....
According to the API docs for listObjectsV2 `obj.name` and `obj.etag` are `string` and `obj.lastModified` is `Date`. Based on [`BucketItem` type in the code](https://github.com/minio/minio-js/blob/fbcfe63d3d035a90b4deabfcdffca2e73ee6ddc7/src/internal/type.ts#L109-L123) and the following observed error from `tsc`,...
Align ignored headers for signing to current aws sdks. Current V3 JS-SDK only ignores content-type: https://github.com/aws/aws-sdk-js-v3/blob/86a26c6e93a79415385443cece377d4761dba770/packages/s3-request-presigner/src/presigner.ts#L80 AWS Rust SDK removed filtering out content-length: https://github.com/awslabs/aws-sdk-rust/issues/466 https://github.com/awslabs/aws-sdk-rust/blob/98d89ab5a93ef71d260c8399c4e9be58175d7269/sdk/aws-sigv4/src/http_request/canonical_request.rs#L982 This change is useful to...
Hello team, Thank you for developing and maintaining the MinIO JS SDK! I've observed an inconsistent behavior when using the getBucketLifecycle method regarding the structure of the returned lifecycle rules....
minio/minio:RELEASE.2025-04-22T22-12-26Z-cpuv1 "minio": "8.0.5" Using the uploadPart method yields an error, your way of accepting return values should be outdated! const res = await this.makeRequestAsync(requestOptions, payload); const body = await (0,...