Questions tagged [archiverjs]

Archiver.js is a streaming interface for archive generation with JavaScript

About

Archiver ships with out of the box support for TAR and ZIP archives.

You can register additional formats with registerFormat.

Usages

var archiver = require('archiver');
var archive = archiver.create('zip', {}); // or archiver('zip', {});

Links

31 questions
0
votes
1 answer

Archiver v1.3.0 - Unable to zip directory content without the directory name being the root folder

I am using https://archiverjs.com/docs/ to zip a directory for my PhoneGap application but I have not yet managed to achieve what I want to. I have a folder structured like this: - www - css - images - scripts - config.xml -…
Daniele
  • 239
  • 1
  • 16
1 2
3