DEV Community

Discussion on: How to Upload Multiple File with Progress Bar (ReactJS + Redux and ExpressJS)

Collapse
 
devinekadeni profile image
Devin Ekadeni

Unfortunately I don't have any expert experience on the backend side.
But all I could tell is if you're using the same backend side of this article (which using multer), whenever client upload file and hit the POST /file endpoint, backend side will receive the file which contain a lot of information (you could see it on the multer docs) and perhaps you could use its data to pass to AWS S3.

And if I do a quick search, turns out multer have another package that work along with S3 bucket, you can see it here
Goodluck!

Collapse
 
ashermiti profile image
Asher Mitilinakis

Amazing, thanks a lot!! :)