Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gzipper

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gzipper

CLI for compressing files.

  • 2.4.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
37K
increased by5.34%
Maintainers
1
Weekly downloads
 
Created
Source

Gzipper

Build Status

CLI for compressing files.

Install

npm i gzipper -g

or locally to devDependencies

npm i gzipper -D

Run script

Globally usage.

gzipper [options] <path> [outputPath]

Locally usage.

  • add to scripts in your package.json
  "scripts": {
    ...
    "gzipper": "gzipper"
  }
  • use gzipper with your build commands (e.g. Angular CLI)
  "scripts": {
    "build": "ng build && gzipper --verbose ./dist"
  }
  • compress files to a certain directory ./gzipped
  "scripts": {
    "build": "ng build && gzipper --verbose ./dist ./gzipped"
  }

Options

OptionENVDescription
-V, --versionoutput the version number
-v, --verboseGZIPPER_VERBOSEdetailed level of logs
-gl, --gzip-level [level]GZIPPER_GZIP_LEVELgzip compression level -1 (default), 0 (no compression) - 9 (best compression)
-gm, --gzip-memory-level [memoryLevel]GZIPPER_GZIP_MEMORY_LEVELamount of memory which will be allocated for compression 8 (default), 1 (minimum memory) - 9 (maximum memory)
-gs, --gzip-strategy [strategy]GZIPPER_GZIP_STRATEGYcompression strategy 0 (default), 1 (filtered), 2 (huffman only), 3 (RLE), 4 (fixed)
--brotliGZIPPER_BROTLIenable brotli compression, Node.js >= v11.7.0
-bp, --brotli-param-mode [brotliParamMode]GZIPPER_BROTLI_PARAM_MODEdefault, text (for UTF-8 text), font (for WOFF 2.0 fonts)
-bq, --brotli-quality [brotliQuality]GZIPPER_BROTLI_QUALITYbrotli compression quality 11 (default), 0 - 11
-bs, --brotli-size-hint [brotliSizeHint]GZIPPER_BROTLI_SIZE_HINTexpected input size 0 (default)
-h, --helpoutput usage information

Contribution

I appreciate every contribution, just fork the repository and send the pull request with your changes.

Requirements

  • Node.js >= 8

Keywords

FAQs

Package last updated on 11 Apr 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc