node-archiver
node-archiver copied to clipboard
a streaming interface for archive generation
This is not a bug but sharing my implementation. I have been looking into back pressuring because the queue was piling up in memory when the Zip transform pipe was...
I've been testing a function that uses `node-archiver` and I'm struggling to find a way to test the error event. I've tested the success of the function, which is to...
The [`.append`](https://www.archiverjs.com/lib_core.js.html#line551) interface does not allow us to handle backpressure causing Out Of Memory issue. E.g. those simple examples from the library readme page: ```js // append a file from...
Hi Developer, I am wondering is there a way to directory an archive to a name with '/', var NameWithSlash = 'Folder 1/2'; archive.directory( '/path/to/be/archived', '/des/path/'+NameWithSlash, { date: new Date()...
Bumps [jsdoc](https://github.com/jsdoc/jsdoc) from 3.6.10 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. Commits dc48aa6 3.6.11 cccfd3d...
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.1.1 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...
Hi there! I'm trying to create a zip file and I'm noticing one inconsistency when generating the same zip using the CLI (`zip` command) versus archiver. This is file file...
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...
Hi there, I have recently been working on a custom exporting feature in our project. The idea is, that a user is able to export custom (and often rather large)...
Hello all, Hope you guys are well and safe. Need some help. I have written below for zipping a directory : ``` const archiver = require('archiver'); let createArchive = function(sourceDir,...