archiver-zip

a zip plugin for archiver

Usage no npm install needed!

<script type="module">
  import archiverZip from 'https://cdn.skypack.dev/archiver-zip';
</script>

README

archiver-zip v0.1.0 Build Status

zip archiver plugin

Install

$ npm install --save archiver-zip

Usage

var Archiver = require('archiver');
var ArchiverZip = require('archiver-zip');

new Archiver()
  .src('files/*.html')
  .pipe(archive.dest('dest/archive.zip'))
  .use(ArchiverZip())
  .run();

API

ArchiverZip(options)

TBA

Things of Interest