🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

vite-plugin-compression

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-compression

Use gzip or brotli to compress resources.

0.5.1
latest
Version published
Weekly downloads
143K
-7.11%
Maintainers
1
Weekly downloads
 
Created

What is vite-plugin-compression?

vite-plugin-compression is a Vite plugin that enables compression of assets using various algorithms like gzip, brotli, and more. This helps in reducing the size of the assets served to the client, thereby improving load times and overall performance.

What are vite-plugin-compression's main functionalities?

Gzip Compression

This feature allows you to compress your assets using the gzip algorithm. Gzip is widely supported and can significantly reduce the size of your assets.

json
{
  "plugins": [
    require('vite-plugin-compression')({
      algorithm: 'gzip'
    })
  ]
}

Brotli Compression

This feature allows you to compress your assets using the Brotli algorithm. Brotli often provides better compression rates compared to gzip.

json
{
  "plugins": [
    require('vite-plugin-compression')({
      algorithm: 'brotliCompress'
    })
  ]
}

Custom Compression Options

This feature allows you to customize various options for the compression process, such as the file extension, compression threshold, and whether to delete the original file after compression.

json
{
  "plugins": [
    require('vite-plugin-compression')({
      algorithm: 'gzip',
      ext: '.gz',
      threshold: 10240,
      deleteOriginFile: false
    })
  ]
}

Other packages similar to vite-plugin-compression

FAQs

Package last updated on 29 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts