Hi,
a freelance programer created for me an app for decompressing zip archives. Its based purely on this javascript code - https://gildas-lormeau.github.io/zip.js/ and files are not stored on server.
Zip archive can be dangerous due viruses and malwares. Do I understand it right that my server will be secure if the app is pure html/javascript? This unziping will be done throught frontend and not backend. I am not programmer so I am not sure if I do understand this right.
I am not familiar with that particular script, but as long as your server is storing and transmitting the zip file itself and not unzipping it on the server, then I would say you are pretty safe.
However of course that still brings up the topic that you are potentially housing zip files that may have a virus on your machine and someone may inadvertently open one of those files at some point in the future. Perhaps you can run some kind of scan on them on upload?
Of course that javascript is somewhat opening files, but everything should be done thought internet browser and not my server. This is frontend app and not backend app.
I am not expert at this but if there are not zip files on my server then this server should be secure.