All Projects → Stuk → Jszip

Stuk / Jszip

Licence: other
Create, read and edit .zip files with Javascript

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Labels

Projects that are alternatives of or similar to Jszip

tiny-zip
The missing Zip library for Java
Stars: ✭ 18 (-99.76%)
Mutual labels:  zip
Laravel Personal Data Export
Create zip files containing personal data
Stars: ✭ 431 (-94.25%)
Mutual labels:  zip
Leanify
lightweight lossless file minifier/optimizer
Stars: ✭ 694 (-90.74%)
Mutual labels:  zip
Gulp Zip
ZIP compress files
Stars: ✭ 262 (-96.51%)
Mutual labels:  zip
Php Zip
PhpZip is a php-library for extended work with ZIP-archives.
Stars: ✭ 336 (-95.52%)
Mutual labels:  zip
Laravel Backup
A package to backup your Laravel app
Stars: ✭ 4,752 (-36.61%)
Mutual labels:  zip
cross-unzip
Cross-platform 'native' unzip in Node.js
Stars: ✭ 17 (-99.77%)
Mutual labels:  zip
Z1p
Zip Codes Validation and Parse.
Stars: ✭ 17 (-99.77%)
Mutual labels:  zip
Libzip
A C library for reading, creating, and modifying zip archives.
Stars: ✭ 379 (-94.94%)
Mutual labels:  zip
Ugrep
🔍NEW ugrep v3.1: ultra fast grep with interactive query UI and fuzzy search: search file systems, source code, text, binary files, archives (cpio/tar/pax/zip), compressed files (gz/Z/bz2/lzma/xz/lz4), documents and more. A faster, user-friendly and compatible grep replacement.
Stars: ✭ 626 (-91.65%)
Mutual labels:  zip
React Native Zip Archive
Zip archive utility for react-native
Stars: ✭ 300 (-96%)
Mutual labels:  zip
Decompress
Extracting archives made easy
Stars: ✭ 316 (-95.78%)
Mutual labels:  zip
Kodexplorer
A web based file manager,web IDE / browser based code editor
Stars: ✭ 5,490 (-26.77%)
Mutual labels:  zip
Node Stream Zip
node.js library for fast reading of large ZIPs
Stars: ✭ 252 (-96.64%)
Mutual labels:  zip
Minizip Ng
Fork of the popular zip manipulation library found in the zlib distribution.
Stars: ✭ 750 (-90%)
Mutual labels:  zip
lzbase62
LZ77(LZSS) based compression algorithm in base62 for JavaScript.
Stars: ✭ 38 (-99.49%)
Mutual labels:  zip
Cosmopolitan
build-once run-anywhere c library
Stars: ✭ 6,324 (-15.65%)
Mutual labels:  zip
Nativexplatform
Akeeba Portable Tools (cross-platform) - Desktop utilities for use with Akeeba Backup and Akeeba Solo
Stars: ✭ 17 (-99.77%)
Mutual labels:  zip
Peazip
Free Zip / Unzip software and Rar file extractor. Cross-platform file and archive manager. Features volume spanning, compression, authenticated encryption. Supports 7Z, 7-Zip sfx, ACE, ARJ, Brotli, BZ2, CAB, CHM, CPIO, DEB, GZ, ISO, JAR, LHA/LZH, NSIS, OOo, PAQ/LPAQ, PEA, QUAD, RAR, RPM, split, TAR, Z, ZIP, ZIPX, Zstandard.
Stars: ✭ 827 (-88.97%)
Mutual labels:  zip
Zip
A portable, simple zip library written in C
Stars: ✭ 596 (-92.05%)
Mutual labels:  zip

JSZip Build Status Code Climate

Selenium Test Status

A library for creating, reading and editing .zip files with JavaScript, with a lovely and simple API.

See https://stuk.github.io/jszip for all the documentation.

var zip = new JSZip();

zip.file("Hello.txt", "Hello World\n");

var img = zip.folder("images");
img.file("smile.gif", imgData, {base64: true});

zip.generateAsync({type:"blob"}).then(function(content) {
    // see FileSaver.js
    saveAs(content, "example.zip");
});

/*
Results in a zip containing
Hello.txt
images/
    smile.gif
*/

License

JSZip is dual-licensed. You may use it under the MIT license or the GPLv3 license. See LICENSE.markdown.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].