Skip to content

Instantly share code, notes, and snippets.

View Shubham2157's full-sized avatar
🏠
Working from home

Shubham Kumar Jha Shubham2157

🏠
Working from home
View GitHub Profile
@Shubham2157
Shubham2157 / FileUpload.js
Created November 9, 2020 15:37 — forked from nyx-code/FileUpload.js
This NodeJS API which will upload files onto the AWS S3 Bucket. Video -> https://youtu.be/TtuCCfren_I
require('dotenv/config')
const express = require('express')
const multer = require('multer')
const AWS = require('aws-sdk')
const uuid = require('uuid/v4')
const app = express()
const port = 3000