node-zip-stream icon indicating copy to clipboard operation
node-zip-stream copied to clipboard

a streaming zip archive generator

Results 39 node-zip-stream issues
Sort by recently updated
recently updated
newest added

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...

dependencies
javascript

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...

dependencies
github_actions

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...

dependencies
javascript

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)...

dependencies
javascript

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...

dependencies
github_actions

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...

dependencies
github_actions

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...