New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

asset-size-reporter

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asset-size-reporter

Generic asset size comparison and reporting tool

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

asset-size-reporter

Generic asset size comparison and reporting tool

Installation

npm install -g asset-size-reporter

Usage

Print asset sizes to the console:

$ asset-size-reporter "dist/*.js"

dist/bar.js: 13.6 kB / 1.20 kB gzip 
dist/foo.js: 42.3 kB / 2.32 kB gzip 

Total: 55.9 kB / 3.52 kB gzip 

Write asset size report to a JSON file:

$ asset-size-reporter "dist/*.js" --json > asset-size-report.json

Compare asset sizes to a previous reports:

$ asset-size-reporter "dist/*.js" --compare=previous.json

dist/bar.js: 13.6 kB -> 13.8 kB (+213 Byte) / 1.20 kB -> 1.21 kB (+25 Byte) gzip 
dist/baz.js: 11.2 kB / 1.04 kB gzip (new file) 
[dist/foo.js]: 42.3 kB / 2.32 kB gzip (deleted file) 

Total: 55.9 kB -> 25.0 kB (-30.9 kB) / 3.52 kB -> 2.25 kB (-1.27 kB) gzip 

Configuration

Instead of defining the asset search paths on the command line it is also possible to create an asset-size-reporter.config.json file that contains the configuration.

Possible configuration options are:

  • patternsstring[] – An array of glob patterns that describe what files should be considered by the asset-size-reporter

    {
      "patterns": [
        "dist/*.css",
        "dist/*.js",
        "!dist/tests.js"
      ]
    }
    
  • gzipboolean|number – Turn gzip reporting on/off or set a specific gzip compression level (default: true)

  • brotliboolean|number – Turn brotli reporting on/off or set a specific brotli compression level (default: false)

License

ember-test-selectors is developed by and © simplabs GmbH and contributors. It is released under the MIT License.

FAQs

Package last updated on 23 Nov 2017

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