Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hojas/minio-es

Use the MinIO JavaScript Client SDK in the browser easily, with support for ES modules.
https://github.com/hojas/minio-es

minio

Last synced: 28 days ago
JSON representation

Use the MinIO JavaScript Client SDK in the browser easily, with support for ES modules.

Awesome Lists containing this project

README

        

# minio-es

Use the MinIO JavaScript Client SDK in the browser easily, with support for ES modules.

## Install

```shell
$ npm install minio-es
```

## Use

```javascript
import { Client } from 'minio-es'

const minioClient = new Client({
endPoint: 'play.min.io',
port: 9000,
useSSL: true,
accessKey: 'Q3AM3UQ867SPQQA43P2F',
secretKey: 'zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG',
})
```

## Related

[minio-js](https://github.com/minio/minio-js)