Socket
Socket
Sign inDemoInstall

webpack-bundle-analysis-cli

Package Overview
Dependencies
2
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    webpack-bundle-analysis-cli

A webpack plugin analyzer in command line. Can be used for webpack health checks.


Version published
Weekly downloads
1
Maintainers
1
Install size
113 kB
Created
Weekly downloads
 

Readme

Source

Webpack Cli Bundle Analyzer

A webpack plugin for analysing the bundle sized in terminal. Provides a graphical representation of the bundle sizes in command line. Just install and add the plugin to the webpack plugins array and check out the magic!

npm i --save webpack-bundle-analysis-cli

Examples:

  1. Default Options
const WebpackBundleAnalyzer = require('webpack-bundle-analysis-cli');

plugins: [new WebpackBundleAnalyzer()]
  1. Passing options to the plugin
const WebpackBundleAnalyzer = require('webpack-bundle-analysis-cli');

plugins: [new WebpackBundleAnalyzer({
            height: 20,
            width: 40,
            color: 'cyan'
            })]

Output:

Limitations:

  • Bundle Sizes are plotted in bytes.
  • Only numberic legends support.
  • Support for only height, width and color option.

Keywords

FAQs

Last updated on 25 Feb 2020

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