Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.41 KB

File metadata and controls

43 lines (29 loc) · 1.41 KB

Simple Unzipper — Anakatech

Batch unzip tool: pick a folder of .zip files and a destination folder, then run. Built for speed with an Anakatech-style UI.

Quick start

npm install
npm start

How to test with real files (before deployment)

  1. Create test ZIPs
    Put one or more .zip files in a folder (e.g. C:\TestZips or D:\MyZips).

  2. Choose destination
    Pick an empty or new folder where you want the extracted files (e.g. C:\UnzippedOutput).

  3. In the app

    • Zipped files location → Browse → select the folder with your .zip files.
    • Unzipped files destination → Browse → select the output folder.
    • Click Start.
  4. Progress
    A modal opens with “Hold My Beer!” and the 8-bit style animation. It processes all .zip files in the source folder.

  5. Completion
    When done, a gamified popup shows the result. Click Close to dismiss.

UI overview

  • ? (top right) — Opens the “How to use” walkthrough.
  • ⓘ next to each field — Hover for a short explanation.
  • Browse — Opens a folder picker for that path.
  • Start — Runs the batch unzip (progress window, then completion popup).

Tech

  • Electron — Desktop window and file access.
  • yauzl — Fast, streaming unzip (no full load into memory).

Only .zip files in the chosen source folder are processed; subfolders are not scanned.