
Security News
minimatch Patches 3 High-Severity ReDoS Vulnerabilities
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.
rollup-plugin-stats
Advanced tools
Output Rollup stats JSON file
npm install --dev rollup-plugin-stats
or
yarn add --dev rollup-plugin-stats
// vite.config.mjs
import { defineConfig } from 'vite';
import pluginStats from 'rollup-plugin-stats';
export default defineConfig({
// your vite config
plugins: [
// add it as the last plugin
pluginStats(),
],
});
// rollup.config.mjs
import { defineConfig } from 'rollup';
import pluginStats from 'rollup-plugin-stats';
export default defineConfig({
// your rollup config
plugins: [
// add it as the last plugin
pluginStats(),
],
});
// rollup.config.js
const { defineConfig } = require('rollup');
const pluginStats = require('rollup-plugin-stats');
module.exports = defineConfig({
// your rollup config
plugins: [
// add it as the last plugin
pluginStats(),
],
});
// rolldown.config.js
import { defineConfig } from 'rolldown';
import pluginStats from 'rollup-plugin-stats';
export default defineConfig({
// your rolldown config
plugins: [
// add it as the last plugin
pluginStats(),
],
});
fileName - the JSON filepath relative to the build folder or absolute(default: stats.json)write - format and write the stats to disk(default: fs.write(filename, JSON.stringify(stats, null, 2)))stats
source - output asset/chunk/module source (default false)map - output chunk map property (default: false)excludeAssets - exclude matching assets: string | RegExp | ((filepath: string) => boolean) | Array<string | RegExp | ((filepath: string) => boolean)>excludeModules - exclude matching modules: string | RegExp | ((filepath: string) => boolean) | Array<string | RegExp | ((filepath: string) => boolean)>Analyze bundle stats(bundle size, assets, modules, packages) and compare the results between different builds. Support for webpack, rspack, vite, rolldown and rollup.
Generate vite/rollup/rolldown stats JSON file with a bundle-stats webpack supported structure.
FAQs
Output Rollup stats
The npm package rollup-plugin-stats receives a total of 62,681 weekly downloads. As such, rollup-plugin-stats popularity was classified as popular.
We found that rollup-plugin-stats demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.

Security News
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.

Research
/Security News
Socket uncovered 26 malicious npm packages tied to North Korea's Contagious Interview campaign, retrieving a live 9-module infostealer and RAT from the adversary's C2.

Research
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.