Skip to content

andreasgal/zipfile.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

zipfile.js

Unzip files from .zip archives in JavaScript.

Pass the .zip file to the constructor as an ArrayBuffer. read() will return an Uint8Array of the uncompressed data for each file. I didn't add an API to list files yet because my use case didn't need it. Patches welcome!

var zip = new ZipFile(arrayBuffer);
var data = zip.read("file.txt");

About

Unzip files from .zip archives in JavaScript

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published