3.0.2 • Published 2 months ago

@kodepandai/flydrive-s3 v3.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

flydrive is a framework-agnostic package which provides a powerful wrapper to manage file Storage in Node.js.

This package is the driver for Amazon S3 and other compatible services.


Getting Started

This package is available in the npm registry. It can easily be installed with npm or yarn.

$ npm i @kodepandai/flydrive-s3
# or
$ yarn add @kodepandai/flydrive-s3
const { AmazonWebServicesS3Storage } = require('@kodepandai/flydrive-s3');
const { StorageManager } = require('@kodepandai/flydrive');
const storage = new StorageManager({
  // ...

  s3: {
    driver: 's3',
    config: {
      key: process.env.S3_KEY,
      endpoint: process.env.S3_ENDPOINT,
      secret: process.env.S3_SECRET,
      bucket: process.env.S3_BUCKET,
      region: process.env.S3_REGION,
    },
  },
});

storage.registerDriver('s3', AmazonWebServicesS3Storage);
3.0.2

2 months ago

3.0.1

5 months ago

3.0.0-next.2

7 months ago

3.0.0-next.1

9 months ago

3.0.0-next.4

5 months ago

3.0.0

5 months ago

3.0.0-next

11 months ago

2.1.1

2 years ago

2.1.0

2 years ago

2.0.0

2 years ago

1.1.0

2 years ago

1.0.4

2 years ago