Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to read the contents of zip files, let a user change some of their contents on a webpage (via canvas and textarea), and give the changed .zip back via data:uri (and probably Downloadify)

So far, I have found:

  1. LoadZIP (unzipping, idk if that’s the proper name)
  2. js-unzip (unzipping, obviously. Also, i like LoadZIP’s API waay better.)
  3. jszip (zipping)

But none of these supports both, i.e. unzipping, partial change, rezipping.

The overhead isn’t too bad, I guess, but I wonder if there is any glue library or one that suppports both ways itself.

share|improve this question
Is there some reason why you want to do it all client-side rather than have the zips handled server-side? – Spoike May 31 '11 at 11:19
you should also be aware of the 32 kb size limit of data uris in IE8. – fbuchinger May 31 '11 at 11:28
thanks for your suggestions: i want to do it client-side, because i like the portability of this approach (extract zip, have local webapp) and, of course, because i like the challenge. regarding ie8: i found that even ie9 doesn’t support those properly. since it is a very small project, which i do for fun, and i got only one complaint about this (from someone who has a copy of chrome ready for such cases), i can neglect it. – flying sheep May 31 '11 at 11:35

closed as not constructive by Will Apr 30 at 17:09

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

By the way, you can also use the jszip method load(). You can see this by scrolling all the way down on http://stuk.github.io/jszip/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.