
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
hooks-webpack-plugin
Advanced tools
A bridge plugin which helps to directly attach an action to any compiler or compilation hook in webpack.config.js.
Tapable hooks is flexible to work as a callback pattern. But unfortunately, when we want to quickly attach a simple action to a compiler or compilation hook, especially directly in webpack.config.js, it's not so convenient. The solution of this plugin is provide a compact naming convention to map both compiler and compilation hooks in a flat options object, for example:
const options = {
// a sync compiler hook
beforeRun: (compiler) => {
// ...
},
// An ending '@' is indicating a call to tapAsync
'done@': (compiler, callback) => {
// ...
callback() // notify webpack the action is completed now.
},
// A leading '$' is indicating this is a compilation hook.
$succeedModule: (module) => {
// ...
},
// An ending '?' indicating a call to tapPromise.
'$additionalAssets?': () => new Promise((resolve, reject) => {
doSomeAwesomeWork()
.then((result) => {
// ...
resolve(result)
})
.catch((err) => {
// ...
reject(err)
})
})),
// or use the async/await version
'$optimizeAssets?': async () => {
try {
var result = await doSomeAwesomeWork()
// ...
return result
} catch(err) {
// ...
throw err
}
})
}
compatibility: This plugin only supports the hooks operations. So it does not work with (very) old versions of webpack.
npm i -D hooks-webpack-plugin
You can put it in webpack.config.js, or anywhere you prefer.
const HooksPlugin = require('hooks-webpack-plugin')
const doSomeAwesomeWork = new HooksPlugin({
beforeRun: (compiler) => {
console.log('---- beforeRun ----')
},
'done@': (compiler, callback) => {
console.log('---- packing is done! ----')
callback()
},
})
const config = {
// ...
plugins: [
doSomeAwesomeWork,
// ...
],
// ...
}
Please refer to webpack's documentation.
You are welcome to report bugs, give suggestions and contributions. Cheers.
FAQs
A bridge plugin which helps to directly attach an action to any compiler or compilation hook in webpack.config.js.
We found that hooks-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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.