JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 14838222
  • Score
    100M100P100Q219517F
  • License MIT

Get the gzipped size of a string or buffer

Package Exports

  • gzip-size

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gzip-size) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gzip-size Build Status

Get the gzipped size of a string or buffer

Install

$ npm install --save gzip-size

Usage

var gzipSize = require('gzip-size');
var string = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.';

console.log(string.length);
//=> 191

console.log(gzipSize.sync(string));
//=> 78

API

gzipSize(input, callback)

input

Required
Type: string, buffer

callback(err, size)

Required
Type: function

gzipSize.sync(input)

Returns the size.

input

Required
Type: string, buffer

CLI

$ npm install --global gzip-size
$ gzip-size --help

  Usage
    gzip-size <file>
    cat <file> | gzip-size

  Example
    gzip-size index.js
    211

Tip

Combine it with pretty-bytes to get a human readable output:

$ pretty-bytes $(gzip-size jquery.min.js)
29.34 kB

License

MIT © Sindre Sorhus