minio-js icon indicating copy to clipboard operation
minio-js copied to clipboard

MinIO Client SDK for Javascript

Results 98 minio-js issues
Sort by recently updated
recently updated
newest added

Currently I have need for support of AWS_WEB_IDENTITY_TOKEN_FILE along with the AWS_ROLE_ARN with to fetch temporary accesskey and secret keys from Amazon STS using the minio-js SDK. This is due...

refactor `composeObject` api to ts

migrate `removeIncompleteUpload` api to ts Note: It is a no-op in MinIO Can be used/tested with AWS S3.

refactor `copyObject` api to ts

Hello, I'm currently using version 8.0.1, but I still encountered this issue [Cannot find type definition file for 'minio'](https://github.com/minio/minio-js/issues/1257) yesterday. The current entry point `"types": "./types/esm/minio.d.ts"` is incorrect, and the...

Resolves #1312 Additionally, remove unnecessary `isFunction` checks as that is now handled by the callbackify wrapper. Added module in unit test library for better coverage.

Calling the `presignedUrl` function without including the optional expiry parameter incorrectly sets the URL query string to include a value `X-Amz-Expires=undefined` instead of the default 7 day expiration. AWS S3...

It seems that the typing of the Expiration key in lifeCycleRule is incorrect. Date, Days, DeleteMarker, DeleteAll have all become required since the last update. This creates a typing error...

Hello everyone. I want to upload an mp4 file to minio. I first uploaded the file's fragmented data, and then used composeObject to merge these fragmented files. The objects can...