Skip to content

Instantly share code, notes, and snippets.

View asif-irfanullah-dd's full-sized avatar

Asif Irfanullah Masum asif-irfanullah-dd

  • DeductiveClouds Solutions
  • India
View GitHub Profile
@asif-irfanullah-dd
asif-irfanullah-dd / FileUpload.js
Created October 7, 2021 13:03 — 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