npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@tanem/archiver-webpack-plugin

v9.0.10

Published

A webpack plugin that generates zip archives.

Downloads

101

Readme

archiver-webpack-plugin

npm version build status coverage status npm downloads

A webpack plugin that uses node-archiver to generate .zip, .tar, .tar.gz, or jar archives when the build is done.

Basic Usage

const { ArchiverWebpackPlugin } = require('@tanem/archiver-webpack-plugin')
const path = require('path')

module.exports = {
  mode: 'development',
  entry: './foo.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'foo.bundle.js',
  },
  plugins: [new ArchiverWebpackPlugin('zip')],
}

API

Arguments

  • format - The archive format. One of zip, tar or jar.
  • options - Optional An object containing the optional arguments defined below. Defaults to {}.
    • destpath - Optional The destination path within the archive. Defaults to '', which means files are output to the root of the archive.
    • filename - Optional The name of the archive. '.zip', '.tar', '.tar.gz' or '.jar' will be appended where appropriate. Defaults to the basename of the webpack output path.
    • formatOptions - Optional Allows fine-tuning of archiving. Defaults to the archiver defaults.
    • globOptions - Optional The glob options that will change pattern matching behaviour. Defaults to the node-glob defaults, but sets cwd to the output path. Any globOptions passed will take precedence.
    • globPattern - Optional The glob pattern that determines what will be included in the archive. Defaults to '**/*' which will include all files in the output path.

Example

const { ArchiverWebpackPlugin } = require('@tanem/archiver-webpack-plugin')
const path = require('path')

module.exports = {
  mode: 'development',
  entry: './foo.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'foo.bundle.js',
  },
  plugins: [
    new ArchiverWebpackPlugin('tar', {
      destpath: 'foo',
      filename: 'bar-baz',
      formatOptions: { gzip: true },
      globOptions: { dot: true, ignore: '*.map' },
      globPattern: '*',
    }),
  ],
}

Installation

⚠️ This library requires webpack 4 and Node.js >= 16.

$ npm install @tanem/archiver-webpack-plugin --save-dev

If you use Node.js >= 17 you'll also need to set an environment variable by running the following command at the prompt, or by adding it to your shell profile:

export NODE_OPTIONS=--openssl-legacy-provider

Ref: webpack/webpack#14532.

License

MIT