I have been struggling in the last few days to get this working.
Basically I have a form in HTML that has a type="file"
input.
I would like that this file is sent to nodejs and directly streamed to Amazon s3. In this way I will use less storage on my server (imagine if 100 people upload 1g, at the end my server will have 100g), so if I stream I will occupy just memory for a little amount of time
Any hint on how to do this with express?