1.0.3-beta • Published 5 years ago

aws-s3-uploader v1.0.3-beta

Weekly downloads
63
License
MIT
Repository
github
Last release
5 years ago

AWS S3 Uploader

Upload image easily in AWS S3.

Usage

For sample code: please refer to examples/ folder.

How to use this Library

  • Install package yarn add aws-s3-uploader
const AwsS3Uploader = require('aws-s3-uploader');
  • Create instance with configuration
// Configurations
const config = {
  accessKeyId: '',      // AWS Access Key
  secretAccessKey: '',  // AWS Secret Access Key
  bucketName: '',       // AWS Bucket Name
  distributionId: '',   // AWS Distribution ID
  cacheControl: 'no-cache, no-store, max-age=0, s-maxage=0',  // AWS cache Control
  acl: 'public-read'    // AWS ACL
}

// Create Instance
const uploader = new AwsS3Uploader(config);
  • Upload and get the uploaded s3 location
const imagePath = path.join(__dirname, 'demo.png');
const s3UploadPath = '/examples/demo.png';
const mimeType = 'image/jpeg';

// Create Body to Upload
const body = fs.createReadStream(imagePath);

// Initiate Upload Request
const uploadPromise = uploader.upload(body, s3UploadPath, mimeType);

// Wait for the promise to complete
uploadPromise
  .then(data => console.log(data))
  .catch(error => console.log(error));

// Sample Output: https://s3.ap-southeast-1.amazonaws.com/demo/demo.png'

Troubleshoot

Questions about this project?

Please feel free to report any bug found. Pull requests, issues, and project recommendations are more than welcome! Create Issue

Todo

  • Unit Tests
  • Improve Code Quality