A thin wrapper around the MinIO Node.js client providing a simplified API for bucket and object operations. Version 1.0.37 wraps the `minio` package with convenient methods like `add`, `list`, `has`, `get`, `del` for buckets, and `add_with_file`, `add_with_ssb` for objects. It defaults to localhost:9000 credentials. The library is intended for quick scripting in Node.js, not for production use. Release cadence is irregular, and the API design relies on Promises. It does not support TypeScript natively.
npm install nv-minio-fetchNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to create a client, add a bucket, list buckets, add an object, and delete a bucket using Promises/async.
Set MINIO_ENDPOINT, MINIO_PORT, MINIO_ACCESS_KEY, MINIO_SECRET_KEY environment variables before instantiation.
Use environment variables to configure the client.
Use bucket.add_with_ssb(stream, name, metadata)
Use const { MC } = require('nv-minio-fetch');Start MinIO server or set environment variables MINIO_ENDPOINT, MINIO_PORT to point to a running instance.