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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vite-plugin-zips

v0.1.0-alpha.2

Published

A Vite plugin for automatically compressing specified directories into zip archives after build.

Readme

vite-plugin-zips

A Vite plugin for automatically compressing specified directories into zip archives after build.

中文文档

📦 Installation

npm install vite-plugin-zips -D
# or
pnpm add vite-plugin-zips -D
# or
yarn add vite-plugin-zips -D

🚀 Basic Usage

import { defineConfig } from "vite";
import zips from "vite-plugin-zips";

export default defineConfig({
  plugins: [zips()],
});

⚙️ Configuration Options

import { defineConfig } from "vite";
import zips from "vite-plugin-zips";

export default defineConfig({
  plugins: [
    zips({
      // Directory to zip, default: 'dist'
      dir: 'dist',
      // Output filename, default: '{name}.zip' (directory name)
      out: 'my-build.zip',
      // Whether to include directory structure, default: true
      includeDir: true,
      // Whether to clear old archives, default: true
      clearOld: true,
      // Files/patterns to ignore
      ignore: ['**/*.map', 'temp/**'],
      // Files/patterns to include, default: ['**/*'] (include all by default)
      include: ['**/*.js', '**/*.html'],
      // Path prefix for files in archive, default: '' (no prefix)
      pathPrefix: 'assets/',
      // Timezone for date formatting in template variables, default: 'local' (system timezone)
      timezone: 'Asia/Shanghai'
    })
  ],
});

Configuration Parameters

| Parameter | Type | Default | Description | |--------|------|----------------|-------------| | dir | string \| string[] | 'dist' | Directory(ies) to zip | | out | string | '{name}.zip' | Output filename template | | includeDir | boolean | true | Whether to include directory structure | | clearOld | boolean | true | Whether to clear old archives | | ignore | string[] | [] | Files/patterns to ignore (glob patterns) | | include | string[] | ['**/*'] | Files/patterns to include (glob patterns, includes all by default) | | pathPrefix | string | '' | Path prefix for files in archive | | timezone | string | 'local' | Timezone for date formatting in template variables |

Template Variables

  • {name}: Original directory name (or 'dist' for multiple directories)
  • {date}: Date in format yyMMdd
  • {datetime}: Date and time in format yyMMddHHmmss
  • {hash}: Random hash string (8 characters)
  • {yyyyMMdd}, {HHmmss}, {yy-MM-dd}, etc.: Custom date format patterns

📚 Usage Examples

Basic Usage

// Compress 'dist' directory to 'dist.zip'
zips()

Multiple Directories

// Compress multiple directories
zips({
  dir: ['dist', 'public', 'assets'],
  out: 'bundle.zip'
})

Ignore Specific Files

// Ignore source maps and temporary files
zips({
  ignore: ['**/*.map', 'temp/**', '*.log']
})

Custom Output Filename

// Use custom filename with various templates
zips({
  out: 'my-project-{datetime}.zip'
})

// Use custom date format
zips({
  out: 'build-{yyyy-MM-dd}-{hash}.zip'
})

Exclude Directory Structure

// Compress files directly without directory structure
zips({
  includeDir: false
})

Include Specific Files

// Only include JavaScript and HTML files
zips({
  include: ['**/*.js', '**/*.html']
})

Add Path Prefix

// Add prefix to all file paths in archive
zips({
  pathPrefix: 'dist/'
})

Timezone Configuration

// Use UTC timezone
zips({
  out: 'build-{datetime}.zip',
  timezone: 'UTC'
})

// Use specific timezone (IANA timezone identifier)
zips({
  out: 'build-{datetime}.zip',
  timezone: 'Asia/Shanghai'  // UTC+8
})

// Use UTC offset format
zips({
  out: 'build-{datetime}.zip', 
  timezone: '+08:00'  // UTC+8
})

// Use local timezone (default)
zips({
  out: 'build-{datetime}.zip',
  timezone: 'local'
})

Supported Timezone Formats:

  • 'local': Use system local timezone (default)
  • 'UTC': Use Coordinated Universal Time
  • IANA timezone identifiers: e.g., 'Asia/Shanghai', 'America/New_York', 'Europe/London', etc.
  • UTC offset: e.g., '+08:00', '-05:00', etc.

🤝 Contributing

Issues and Pull Requests are welcome!

📄 License

MIT License

🔗 Links