Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/hojas/minio-es
- Owner: hojas
- License: mit
- Created: 2023-09-01T08:26:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-09T02:39:28.000Z (about 1 year ago)
- Last Synced: 2024-11-16T01:26:31.136Z (about 2 months ago)
- Topics: minio
- Language: TypeScript
- Homepage:
- Size: 64.5 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)