I have a server which only accepts .tar.gz files or .zip files.
Client side (in browser) I have a couple of Blob's in memory which I need to push back to the server.
Is there any way I can archive these Blob's (i.e. adding to zip or tar.gz) file by streaming them directly to the server?
I would like to avoid having the complete tar.gz file in memory before pushing back to the server.
thanks