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
source
share