Skip to content

Instantly share code, notes, and snippets.

View darrylking15's full-sized avatar

Darryl King darrylking15

View GitHub Profile
@darrylking15
darrylking15 / FileUpload.js
Created September 21, 2020 17:13 — 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