Streaming file from Client to Server to S3
I am working on a side project in which i need to upload data to an s3 bucket.
The user will select a large file on the React frontend and upload it. The file is sent to an Express.js server that will pipe/stream the chunks to an s3 bucket as soon as they arrive.
Is the
The user will select a large file on the React frontend and upload it. The file is sent to an Express.js server that will pipe/stream the chunks to an s3 bucket as soon as they arrive.
Is the
formData that i send from the client to server a readableStream?