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

Is it possible to use an `httpsAgent` as a custom transport to `Minio`? It seems as if Minio takes a transport as a string, but it isn't documented anywhere. What...

Minio has supported sse-c for putObject,but not yet for getObject or presignedUrl?

the local tmp file for speed up download is dangeruos! when the fGetObject() is parallel called with same arguments, the cache file will be polluted, the cache file will be...

I'm following the [tutorial](https://docs.min.io/docs/upload-files-from-browser-using-pre-signed-urls.html) on uploading files to S3 storage. I'm running a local instance of min.io in a Docker container. My application is running a simple express.js server with...

Create a local MinIO server with a `testfile` in a `testbucket`. ```js const MinIO = require("minio"); const client = new MinIO.Client({ endPoint: "127.0.0.1", port: 9000, useSSL: false, accessKey: "minioadmin", secretKey:...

priority: medium
community

If i understood correctly multipart uploads are handled automatically by the putObject and getObject functions if the objects size is greater than 5 MiB. But what happens when i use...

priority: medium
community

No Option avilable to set custom header or metadata in presignedPut or presignedPost. Please Add metadata or header in presignedPut or presignedPost. This option is available in s3; How to...

Hello, I couldn't get success to set any metadata with **presignedUrl/presignedPutUrl** and couldn't found how to. While digging, I realized that the **preSignedUrl** doesn't pass any header parameters to **getRequestOptions**;...

AWS S3 offers to provide a customer encryption key for every file. Will this feature be supported in the future? IMHO it would make sense to also make it optional...

priority: medium
community

I'm trying to hit an non-AWS service (Aliyun) that requires virtual host style addressing. However, none of the settings seems to enable it. I'm doing this from node.js. To make...

priority: medium
community