Create ZIP files on the fly from Amazon S3 using Node.js

I am creating a web application with an online store for the purchase of small digital files. When the user has added all the files that they want to purchase, they pay, and then must be represented by the ZIP order of their purchase.

The website / application is created in Node.js and uses Node raw (e.g. Nginx or Apache). Files are stored on Amazon S3. The cart and web application are proprietary, with the exception of the required Node.js modules.

I am looking for a solution in which I can choose which files the user ordered from Amazon S3, pack them as a ZIP file and transfer it to the user as a download.

I am looking for a relatively simple solution, if possible, does it exist?

Many thanks! James

+3
source share
1 answer

StackOverflow doesn't seem to like "Let me go for that for you."

In any case, the first thing I typed on Google was "node zip stream", and the first result is exactly what you need .

+4
source

All Articles