Skip to content

Instantly share code, notes, and snippets.

View lcolsant's full-sized avatar

Lee Colsant lcolsant

View GitHub Profile
@lcolsant
lcolsant / FileUpload.js
Last active February 17, 2021 06: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 sharp = require('sharp');
const AWS = require('aws-sdk')
// const uuid = require('uuid/v4')
const app = express()
const port = 3000