A webpack progress formatter that provides compact, bar, and detailed output modes for the webpack ProgressPlugin. Version 1.1.0 is stable with no recent releases. It is a simple, dependency-free alternative to other progress plugins like simple-progress-webpack-plugin, offering three distinct display modes suitable for development (compact, bar) and CI (detailed) environments.
npm install better-webpack-progressNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to integrate better-webpack-progress with webpack's ProgressPlugin in a webpack config.
Wrap call: betterProgress({ mode: 'compact' }) returns a function to pass to ProgressPlugin.Choose mode based on environment: compact/bar for dev, detailed for CI.
Use CommonJS require. If using ES modules, use createRequire or fallback to dynamic import.
Use: const betterProgress = require('better-webpack-progress');Set mode: 'compact' (or 'bar' or 'detailed') in options object.
new webpack.ProgressPlugin(betterProgress({ mode: 'compact' }))No dependency data recorded yet.