Skip to content

Instantly share code, notes, and snippets.

View xo28122000's full-sized avatar
🙂
Learning new things everyday

Jainam Shah xo28122000

🙂
Learning new things everyday
View GitHub Profile
@keithweaver
keithweaver / s3-file-upload.js
Last active August 21, 2023 19:30
S3 File Upload to AWS S3
const AWS = require('aws-sdk');
const Busboy = require('busboy');
const BUCKET_NAME = '';
const IAM_USER_KEY = '';
const IAM_USER_SECRET = '';
function uploadToS3(file) {
let s3bucket = new AWS.S3({
accessKeyId: IAM_USER_KEY,