Registry / devops / simple-progress-webpack-plugin

simple-progress-webpack-plugin

JSON →
library2.0.0jsnpmunverified

A simple progress plugin for Webpack (v2.0.0, last released 2022, infrequent updates) that provides detailed, visually appealing build progress in the command line. It supports four output formats: minimal, simple, compact (default), expanded, and verbose. Requires Node.js 12+. Alternative to webpack's built-in progress plugin or ProgressBarPlugin.

devops
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

CommonJS is the standard for webpack config files; ESM import may not work in all Node.js versions.

const SimpleProgressWebpackPlugin = require('simple-progress-webpack-plugin');

Default export is the class itself, not a named export.

import SimpleProgressWebpackPlugin = require('simple-progress-webpack-plugin');

Type import for TypeScript; options interface is not a runtime value.

import type { Options } from 'simple-progress-webpack-plugin';

Instantiates SimpleProgressWebpackPlugin with default options in a webpack config file.

// webpack.config.js const SimpleProgressWebpackPlugin = require('simple-progress-webpack-plugin'); module.exports = { // ... other webpack config plugins: [ new SimpleProgressWebpackPlugin({ format: 'compact', // optional: minimal, simple, compact, expanded, verbose color: true, // optional: default true name: 'My Build', // optional: custom build name }), ], };
Debug
Known footguns
breakingRequires Node.js 12+. Older versions are not supported and may cause errors.
breakingPlugin renamed from 'SimpleProgressPlugin' in v1.x? No, always 'SimpleProgressWebpackPlugin'.
deprecatedThe 'format' option 'verbose' may produce excessive output and is intended for debugging only.
gotchaThe plugin uses chalk internally; color output may not appear on all CI systems (e.g., Jenkins).
gotchaIn watch mode, the plugin prints progress for each recompilation, which may clutter output.
Upgrade
Version history

Breaking-change detection hasn't run for this library yet.

Audit
Security & dependencies

CVE tracking and dependency tree are planned for a later release.

Agent activity
0 hits · last 30 days

No traffic data recorded yet.

Resources