node-zip-stream
node-zip-stream copied to clipboard
a streaming zip archive generator
Bumps [jsdoc](https://github.com/jsdoc/jsdoc) from 3.6.6 to 3.6.11. Changelog Sourced from jsdoc's changelog. 3.6.11 (July 2022) Updates dependency versions to make JSDoc compatible with Node.js 12.0.0 and later. 3.6.10 (January 2022) Fixes...
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2.2.0 to 3.4.1. Release notes Sourced from actions/setup-node's releases. Fix pnpm output and node-version output issues In scope of this release we fixed bugs related to the...
Bumps [readable-stream](https://github.com/nodejs/readable-stream) from 3.6.0 to 4.1.0. Release notes Sourced from readable-stream's releases. v4.1.0 What's Changed ci: add GitHub token permissions for workflows by @varunsh-coder in nodejs/readable-stream#479 Lazily require abort-controller by...
Hello, I'm wondering if it is possible to add files into the zip part by part. By that, i mean something like this : ``` archive.entry('part1', { name: 'file.txt' },...
Hi there, Note that I've created this same issue on the "archiver" project here: https://github.com/archiverjs/node-archiver/issues/602 I strongly suspect that the issue discussed below is an issue with this library as...
Bumps [mocha](https://github.com/mochajs/mocha) from 9.0.2 to 10.0.0. Release notes Sourced from mocha's releases. v10.0.0 10.0.0 / 2022-05-01 :boom: Breaking Changes #4845: Drop Node.js v12.x support (@juergba) #4848: Drop Internet-Explorer-11 support (@juergba)...
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 3.0.2. Release notes Sourced from actions/checkout's releases. v3.0.2 What's Changed Add set-safe-directory input to allow customers to take control. by @TingluoHuang in actions/checkout#770 Prepare changelog...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. Release notes Sourced from actions/upload-artifact's releases. v3.0.0 What's Changed Update default runtime to node16 (#293) Update package-lock.json file version to 2 (#302) Breaking Changes...
I have three jpg files, and they have same name. I deal with them like this: `archive.entry(filestream, { name: `${folderName + item.info.name}` }, (err, entry) => { ... }` And...
## Description When trying to add a string of considerable size such as >7 MB, the `archive.entry` exits abruptly without any exception and `exit code - 0`. Below is sample...