Is there a way to directly stream to a remote server or file archive when working with downloading Node.js files? I use the formidable one and I'm currently trying to include this script, but it always ends up writing a temporary file on my server first, which, in my opinion, is not necessary if the final destination is a remote server.
I also tried the connect-form, which is built on top of the formidable, but did not find any good documentation for onPart / handlePart, which I assume allows me to do this. Does anyone have a pointer to a good example that this scenario allows?
source
share