Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rahul-barick/scalable-image-upload
Scalable image/file upload using Nodejs, React Js, and utilizing AWS S3 signed URL.
https://github.com/rahul-barick/scalable-image-upload
aws-s3 express-js iam-policy nodejs reactjs signed-url
Last synced: about 6 hours ago
JSON representation
Scalable image/file upload using Nodejs, React Js, and utilizing AWS S3 signed URL.
- Host: GitHub
- URL: https://github.com/rahul-barick/scalable-image-upload
- Owner: Rahul-Barick
- Created: 2021-06-11T23:25:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-12T08:23:43.000Z (over 3 years ago)
- Last Synced: 2024-04-16T09:19:23.679Z (7 months ago)
- Topics: aws-s3, express-js, iam-policy, nodejs, reactjs, signed-url
- Language: JavaScript
- Homepage:
- Size: 642 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# scalable-image-upload
Scalable image/file upload using Nodejs, React Js and utilising AWS S3 signed url.There are many resources/blog online that offer suggestions on how to handle file upload (Bad Approach eg: multer npm module - saving files directly on your server isn't a scalable solution! or dealing image with temp storage in server and then upload to AWS s3 is a 2 way approach which uses some amount of resources like CPU and ram to deal with image with single user file upload) but few resource show a solution that can truly scale. AWS S3 to implement file upload that can scale to millions of users (Direct upload image from react to s3 and no server handling) and handling uploads with security concerns.
![Screenshot](image.png)