All Projects → fritx → cross-unzip

fritx / cross-unzip

Licence: other
Cross-platform 'native' unzip in Node.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cross-unzip

aspZip
A classic ASP zip and unzip utility class that uses the native zip support from Windows (XP and above) - no components needed
Stars: ✭ 24 (+41.18%)
Mutual labels:  zip, unzip
Zip.js
JavaScript library to zip and unzip files in the browser and Deno
Stars: ✭ 2,444 (+14276.47%)
Mutual labels:  zip, unzip
Zip
Swift framework for zipping and unzipping files.
Stars: ✭ 2,120 (+12370.59%)
Mutual labels:  zip, unzip
Ob3vil1on
Another archive cracker created in python | cracking [zip/7z/rar] by bruteforcing [ NOT MAINTAINED ]
Stars: ✭ 17 (+0%)
Mutual labels:  unix, zip
cordova-plugin-zeep
Zip compression/decompression for the cordova/phonegap platform
Stars: ✭ 27 (+58.82%)
Mutual labels:  zip, unzip
ftpConnect
A simple and robust dart FTP Client Library to interact with FTP Servers with possibility of zip and unzip files.
Stars: ✭ 43 (+152.94%)
Mutual labels:  zip, unzip
SwiftZip
Swift wrapper for libzip — library for reading, creating, and modifying zip archives.
Stars: ✭ 44 (+158.82%)
Mutual labels:  zip, unzip
unzip
Tiny unzip helper class for .NET 3.5 Client Profile and Mono 2.10, written in pure C#.
Stars: ✭ 25 (+47.06%)
Mutual labels:  zip, unzip
uncompress.js
Uncompress ZIP, RAR, and TAR files with pure JavaScript
Stars: ✭ 79 (+364.71%)
Mutual labels:  zip, unzip
zip
PHP ZipArchive toolbox
Stars: ✭ 30 (+76.47%)
Mutual labels:  zip
x11-cr
X11 bindings for Crystal language.
Stars: ✭ 32 (+88.24%)
Mutual labels:  unix
python-zipstream
Like Python's ZipFile module, except it works as a generator that provides the file in many small chunks.
Stars: ✭ 117 (+588.24%)
Mutual labels:  zip
ZipWriter
Library for creating ZIP archive for Lua
Stars: ✭ 15 (-11.76%)
Mutual labels:  zip
ZipCrack
Crack password protected zip files
Stars: ✭ 23 (+35.29%)
Mutual labels:  zip
sunzip
Provide secure unzip against zip bomb 💣.
Stars: ✭ 32 (+88.24%)
Mutual labels:  unzip
jawk
Awk for JSON.
Stars: ✭ 32 (+88.24%)
Mutual labels:  unix
dotfiles
🏡 .files, including zsh, tmux, vim, and git. Also macOS setup. Good stuff.
Stars: ✭ 30 (+76.47%)
Mutual labels:  unix
Sistem-programlama
Sistem Programlama Türkçe Kaynak (KTÜ)
Stars: ✭ 30 (+76.47%)
Mutual labels:  unix
gobble
Rust rewrite of Devour
Stars: ✭ 23 (+35.29%)
Mutual labels:  unix
cracker-ng
ZIP cracker, CCRYPT cracker, and others to come.
Stars: ✭ 60 (+252.94%)
Mutual labels:  zip

cross-unzip

        

See also: win-7zip, feross/cross-zip

  • Tested on OSX
  • Tested on Windows
  • Zip compress/decompress
  • Progress feedback
$ npm install cross-unzip
$ npm install win-7zip  # Windows support
let { zip, unzip } = require('cross-unzip')

// extract files
unzip('some/archive.zip', 'some/dir', err => {
  // done
})

// compress files
zip('some/dir', 'some/archive.zip', err => {
  // done
})
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].