
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
webpack-bundle-diff
Advanced tools
Webpack-bundle-diff is a tool for understanding changes to your webpack bundles. Because a single import can cause a whole tree of downstream dependencies to get pulled into a bundle, it is possible for a seemingly innocuous change to have a large effect on your bundle size. And when some module does get unexpectedly included in your bundle, it can be hard to understand specifically what code change caused it. By comparing the webpack stats from before and after a change, webpack-bundle-diff helps you understand the change's precise impact.
npm install -g webpack-bundle-diff
webpack --json > stats.json
wbd diff stats1.json stats2.json -o diff.json
wbd report diff.json -o report.md
Diff information is only reported for named chunk groups. Be sure to provide a name for every entry point or code split point that you want analyzed. For example, to configure to entry points named home
and about
your webpack config might look like:
{
entry: {
home: "./home.js",
about: "./about.js"
}
}
To provide a name for a dynamically imported bundle, include the webpackChunkName
magic comment:
import(/* webpackChunkName: "lodash" */ 'lodash');
Generates a bundle data JSON file that can be passed to wbd diff
. Webpack stats files can be huge, with lots of redundant or unnecessary information. A bundle data file contains just the information needed for webpack-bundle-diff to do its work at a tiny fraction of the size. While you can work with webpack stats files directly, you may find it preferable to store bundle data files for the reduced read/write time and space requirements.
Generates a JSON file containing detailed information about the diff. The provided stats files can be the raw webpack stats or bundle data files produced with wbd data
.
Produces a human-readable summary of the provided diff in markdown format.
Webpack-bundle-diff can also be run programmatically via the API:
import { diff, generateReport } from 'webpack-bundle-diff';
let diff = diff(stats1, stats2);
let report = generateReport(diff);
FAQs
Understand changes in webpack bundle size
The npm package webpack-bundle-diff receives a total of 61 weekly downloads. As such, webpack-bundle-diff popularity was classified as not popular.
We found that webpack-bundle-diff demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.