A webpack plugin that displays a simple progress bar in the terminal during the build process. Current stable version is 0.0.5, which supports webpack 1 through 5. It uses node-progress and chalk for customizable progress bars and messages. The plugin wraps webpack's ProgressPlugin events to provide real-time feedback. It is lightweight with no unusual overhead, suitable for projects that want a minimalistic progress indicator. Suitable for any webpack project requiring visual progress feedback during builds.
npm install webpack-simple-progress-pluginVerified import paths — ran on the pinned version, not inferred.
Basic webpack configuration using CommonJS require with custom progress bar styling and message template.
npm install webpack-simple-progress-plugin@latest --save-dev
Add "chalk": "^2.4.2" as a direct dependency in your package.json, or use a plugin that supports modern chalk.
Conditionally enable the plugin only for interactive terminals using process.stdout.isTTY.
Ensure only one instance of the plugin is used per compilation.
Run 'npm install chalk@^2.4.2 --save-dev' or add chalk to your project dependencies.
Use 'const SimpleProgressPlugin = require('webpack-simple-progress-plugin');' instead of 'import'.Update to version 0.0.5 or later: 'npm install webpack-simple-progress-plugin@latest --save-dev'.