Socket
Socket
Sign inDemoInstall

filesizegzip

Package Overview
Dependencies
74
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    filesizegzip

Get a pretty output of the original, minified, gzipped size of a string or buffer: 130 B → 91 B → 53 B (gzip)


Version published
Weekly downloads
19
decreased by-36.67%
Maintainers
1
Install size
1.72 MB
Created
Weekly downloads
 

Readme

Source

filesizegzip Build Status

Get a pretty output of the original & gzipped size of a string or buffer

Useful for logging the difference between original and minified file in e.g. a build-system.

Install

$ npm install --save filesizegzip

Usage

var filesizegzip = require('filesizegzip');

var src = '(function(b,c){var a=Math.floor(Math.random()*(c-b+1)+b);return this.a=a===this.a?++a:a})()';

console.log(filesizegzip(src, true));
//=> 91 B → 53 B (gzip)

API

filesizegzip(src, useGzip)

max

Required
Type: string, buffer, number

Original string or its size in bytes.

useGzip

Type: boolean
Default: false

Show gzipped size of src. Pretty slow. Not shown when src is a number.

License

MIT © Zander Martineau

Keywords

FAQs

Last updated on 03 Oct 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc