zip-stream

a streaming zip archive generator.

zip-stream downloads zip-stream version zip-stream license

zip-stream类似的npm包:

npm下载趋势

3 年
🌟 在 zip-stream 的 README.md 中显示实时使用量图表,只需复制下面的代码。
## Usage Trend
[![Usage Trend of zip-stream](https://npm-compare.com/img/npm-trend/THREE_YEARS/zip-stream.png)](https://npm-compare.com/zip-stream#timeRange=THREE_YEARS)

Cumulative GitHub Star Trend

🌟 在 zip-stream 的 README.md 中显示 GitHub stars 趋势图表,只需复制下面的代码。
## GitHub Stars Trend
[![GitHub Stars Trend of zip-stream](https://npm-compare.com/img/github-trend/zip-stream.png)](https://npm-compare.com/zip-stream)

统计详情

npm包名称
下载量
Stars
大小
Issues
发布时间
License
zip-stream01669.33 kB271 年前MIT

zip-stream的README

ZipStream

zip-stream is a streaming zip archive generator based on the ZipArchiveOutputStream prototype found in the compress-commons project.

It was originally created to be a successor to zipstream.

Visit the API documentation for a list of all methods available.

Install

npm install zip-stream --save

You can also use npm install https://github.com/archiverjs/node-zip-stream/archive/master.tar.gz to test upcoming versions.

Usage

This module is meant to be wrapped internally by other modules and therefore lacks any queue management. This means you have to wait until the previous entry has been fully consumed to add another. Nested callbacks should be used to add multiple entries. There are modules like async that ease the so called "callback hell".

If you want a module that handles entry queueing and much more, you should check out archiver which uses this module internally.

import { ZipStream } from "zip-stream":
const archive = new ZipStream(); // OR new ZipStream(options)

archive.on("error", function (err) {
  throw err;
});

// pipe archive where you want it (ie fs, http, etc)
// listen to the destination's end, close, or finish event

archive.entry("string contents", { name: "string.txt" }, function (err, entry) {
  if (err) throw err;
  archive.entry(null, { name: "directory/" }, function (err, entry) {
    if (err) throw err;
    archive.finish();
  });
});

Credits

Concept inspired by Antoine van Wel's zipstream module, which is no longer being updated.