Skip to content

Instantly share code, notes, and snippets.

View yashtibrewal's full-sized avatar
😃
Always smiling

Yash Tibrewal yashtibrewal

😃
Always smiling
View GitHub Profile
@nyx-code
nyx-code / FileUpload.js
Last active November 25, 2022 20:50
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