@the-/s3

S3 upload helper

Usage no npm install needed!

<script type="module">
  import theS3 from 'https://cdn.skypack.dev/@the-/s3';
</script>

README

@the-/s3

npm Version

S3 upload helper

Installation

$ npm install @the-/s3 --save

Usage

'use strict'

const { TheS3 } = require('@the-/s3')

async function tryExample() {
  const s3 = new TheS3({
    accessKeyId: 'xxxxx',
    bucket: 'myBucket01',
    region: 'ap-northeast-1',
    secretAccessKey: 'xxxxxxxxx',
    signatureVersion: 'v4',
  })

  await s3('some-text.txt', {})
}

tryExample().catch((err) => console.error(err))

API Guide

See API Guide for more detail

License

This software is released under the MIT License.

Links