I would like to send my file to amazon S3 that I've taken from client side as multipart/form-data.
In the original doc of s3.upload it expect body as stream like below.
And for a stream I need to store file into file system and give path.
Here the question comes. I have my file object that I've taken from client side as multipart/form-data
destination:"uploads"
encoding:"7bit"
fieldname:"file"
filename:"test.zip"
mimetype:"application/zip"
originalname:"test.zip"
path:"uploads\test.zip"
size:4440
Is there any way that I send file directly without storing file system?