New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@m1212e/s3minibun

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@m1212e/s3minibun

đź‘¶ Tiny & fast S3 client for node and edge computing platforms

latest
Source
npmnpm
Version
0.6.0
Version published
Maintainers
1
Created
Source

s3minibun | Tiny & fast S3 client optimized for bun.

Fork of https://github.com/good-lly/s3mini optimized for bun. For more documentation, see the original repo.

Installation

npm install @m1212e/s3minibun
yarn add @m1212e/s3minibun
pnpm add @m1212e/s3minibun
bun add @m1212e/s3minibun

Usage

import { S3mini, createOptimizedS3mini } from '@m1212e/s3minibun';

//original way of using S3mini
const s3client = new S3mini({
  accessKeyId: config.accessKeyId,
  secretAccessKey: config.secretAccessKey,
  endpoint: config.endpoint,
  region: config.region,
});

// or the bun optimized way this package offers over the original
const optimizeds3client = createOptimizedS3mini({
  accessKeyId: config.accessKeyId,
  secretAccessKey: config.secretAccessKey,
  endpoint: config.endpoint,
  region: config.region,
})

// ... do something with the clients ...

Keywords

s3

FAQs

Package last updated on 16 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts