🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

webpack-bundle-analysis-cli

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

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.

0.1.2
latest
Source
npm
Version published
Weekly downloads
2
-33.33%
Maintainers
1
Weekly downloads
 
Created
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:

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

plugins: [new WebpackBundleAnalyzer()]
  • 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

webpack

FAQs

Package last updated on 25 Feb 2020

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