
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
debug-webpack-plugin
Advanced tools
This is a webpack plugin that makes it easier to debug webpack builds or plugins. It's built on top of debug.
Install the plugin:
npm install --save-dev debug-webpack-plugin
This plugin can be included to make it easier to debug your webpack builds (and provide some insight into how webpack works). As a convenience, all events that webpack supports for plugins are already included in the plugin.
var DebugWebpackPlugin = require('debug-webpack-plugin');
var path = require('path');
module.exports = {
context: path.join(__dirname, 'app'),
plugins: [
new DebugWebpackPlugin({
// Defaults to ['webpack:*'] which can be VERY noisy, so try to be specific
scope: [
'webpack:compiler:*', // include compiler logs
'webpack:plugin:ExamplePlugin' // include a specific plugin's logs
],
// Inspect the arguments passed to an event
// These are triggered on emits
listeners: {
'webpack:compiler:run': function(compiler) {
// Read some data out of the compiler
}
},
// Defaults to the compiler's setting
debug: true;
})
],
// This compiler setting changes the debug settings of loaders
// and is respected by the DebugWebpackPlugin
debug: true
};
When you're building a plugin and want to make it easier to debug, you can do the following:
var Debugger = require('debug-webpack-plugin').Debugger;
module.exports = {
apply: function(compiler) {
// Create your namespaced debugger
var dbg = Debugger(compiler).create('webpack:plugin:ExamplePlugin');
compiler.plugin('run', function(comp, cb) {
// Log something with the namespaced debugger
dbg.log('The plugin is logging something');
// Emit something that can be listened to
dbg.emit({something: 'The plugin is emitting something'});
cb();
});
}
};
FAQs
Debug webpack builds and plugins
We found that debug-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.