I'm working on node.js express servers I'm stuck! Cant find the correct answer in documentation or somewhere else.
I need be able to:
- receive 2-3 PDF files at server A from client-side
- upload those files to server B
- make ZIP file from files on B server and save it to S3 bucket
- respond to server A with a link to ZIP file
- Save to DB at server A
All stages are not a problem for me except 2. Please help me.
How to upload files from req.files to another server with modules such as request
or HTTP
or anything else?