Skip to content

Instantly share code, notes, and snippets.

View jenish-jadav's full-sized avatar

Jenish Jadav jenish-jadav

View GitHub Profile
@jenish-jadav
jenish-jadav / FileUpload.js
Created October 4, 2020 04:53 — forked from nyx-code/FileUpload.js
This NodeJS API which will upload files onto the AWS S3 Bucket.
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