A simple webpack plugin that displays build status and formatted stats output during development, similar to webpack-dev-middleware. Version 0.1.0 is the initial and only release. Provides configuration for stats display and state notifications (valid/invalid). Minimal dependencies (only webpack peer dependency). Differentiator: lightweight, configuration-focused, no extra middleware required.
npm install webpack-info-pluginVerified import paths — ran on the pinned version, not inferred.
Configures webpack-info-plugin with custom stats and state display in webpack config.
Use correct option key as shown in documentation.
Use new WebpackInfoPlugin(options).
Migrate to webpack-dev-middleware for stats display.
Set stats: false to disable, or configure individual options.
Use const WebpackInfoPlugin = require('webpack-info-plugin'); new WebpackInfoPlugin(options);Provide an object with valid stats keys, e.g., { colors: true }.Run npm install webpack-info-plugin --save-dev and ensure correct require path.