Skip to content

Instantly share code, notes, and snippets.

View SangramBarge's full-sized avatar

Sangram Barge SangramBarge

View GitHub Profile
@SangramBarge
SangramBarge / FileUpload.js
Created November 15, 2020 08:22 — 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
@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
@deepiks
deepiks / Javascript Linked List - Object literal syntax
Last active July 27, 2022 15:18
Javascript Linked List - Object literal syntax
var LinkedList = {
_head: null,
_size: null,
createNode: function(d) {
return {
data: d,
next: null
};
},
addToTail: function(d) {