Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

7zip-wrapper

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

7zip-wrapper

A comprehensive, feature-complete Node.js wrapper for 7-Zip with TypeScript support, bundled binaries, and cross-platform compatibility.

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

7zip-wrapper

A powerful, type-safe Node.js wrapper for 7-Zip with native Stream & Buffer support.

npm version License: MIT TypeScript

7zip-wrapper provides a modern, Promise-based API for 7-Zip operations. It bundles the 7-Zip binary for Windows, Linux, and macOS, ensuring zero configuration and reliable execution everywhere.

✨ Features

  • 🔋 Bundled Binaries: No external dependencies or system installations required. Works out of the box.
  • 🌊 Stream Support: Pipe data directly into archives (addFromStream) and out of archives (extractToStream).
  • 💾 Buffer Support: Extract files directly to memory (extractToBuffer) or add Buffers to archives.
  • 📦 Multi-Format: Support for 7z, ZIP, TAR, GZIP, XZ, and reading RAR.
  • 🔒 Security: Full password protection and header encryption support.
  • 🚀 TypeScript: Written in TypeScript with complete type definitions.
  • 📈 Progress Monitoring: Real-time progress updates for long-running operations.

📦 Installation

npm install 7zip-wrapper

🚀 Quick Start

The ZipWrapper class provides a clean, fluent interface for all operations.

import { ZipWrapper } from '7zip-wrapper';

const zip = new ZipWrapper();

// 1. Create an archive
await zip.add('backup.7z', ['src/', 'package.json'], {
  level: 9,
  password: 'secret-password',
});

// 2. Extract an archive
await zip.extract('backup.7z', {
  outputDir: './restored',
  overwrite: true,
});

Functional API

If you prefer functions over classes, you can import them directly:

import { add, extract, list } from '7zip-wrapper';

await add('archive.zip', 'files/', { type: 'zip' });
await extract('archive.zip', { outputDir: 'out' });

🌊 Streams & Buffers (New!)

Handle data efficiently without writing to temporary files.

Streaming Into an Archive

Pipe a Readable stream (or Buffer) directly into an archive entry.

import { Readable } from 'stream';

const myStream = Readable.from(['Hello World']);
await zip.addFromStream('archive.7z', 'hello.txt', myStream);

Streaming Out of an Archive

Get a Readable stream for a file inside an archive.

const readStream = zip.extractToStream('archive.7z', 'large-file.log');
readStream.pipe(process.stdout);

Working with Buffers

Read a file from an archive directly into memory.

const buffer = await zip.extractToBuffer('assets.7z', 'config.json');
const config = JSON.parse(buffer.toString());

📚 API Reference

Core Operations

add(archive, files, options)

Create or update an archive.

OptionTypeDescription
typestringArchive format (7z, zip, tar, gzip, etc.)
level0-9Compression level (0=store, 9=ultra)
passwordstringPassword for encryption
encryptFilenamesbooleanEncrypt file names (Head encryption)
recursivebooleanRecurse into subdirectories (default: true)

extract(archive, options)

Extract files from an archive.

OptionTypeDescription
outputDirstringDestination directory
filesstring[]Specific files/patterns to extract
overwritebooleanOverwrite existing files
passwordstringPassword for decryption

Advanced Usage

Progress Events

Monitor operation progress for UI feedback.

await zip.add('big-archive.7z', 'data/', {
  onProgress: (progress) => {
    console.log(`Processing: ${progress.percent}% (${progress.file})`);
  },
});

Quick Helpers

For simple, one-off tasks without configuration.

import { quick } from '7zip-wrapper';

await quick.zip(['file1.txt'], 'archive.zip'); // Max compression ZIP
await quick.sevenz(['file1.txt'], 'archive.7z'); // Max compression 7z
await quick.extract('archive.7z', 'output/');

📂 Supported Formats

FormatReadWrite
7z
ZIP
TAR
GZIP
XZ
RAR❌*

*RAR creation is not supported by 7-Zip open source binaries.

🛠 Project Structure

  • src/: TypeScript source code.
  • examples/: Ready-to-run usage examples.

📄 License

MIT © Rashed Iqbal

Keywords

7zip

FAQs

Package last updated on 25 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts