
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
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 87 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
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.