
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@insanecoding/html-webpack-banner-plugin
Advanced tools
This is an extension plugin for the webpack plugin html-webpack-plugin - a plugin that simplifies the creation of HTML files to serve your webpack bundles.
Adds a banner to the top of generated html.
Install the plugin with npm:
$ npm install -d html-webpack-banner-plugin
Install the plugin with yarn:
$ yarn add -D html-webpack-banner-plugin
Load the plugin
const HtmlWebpackBannerPlugin = require('html-webpack-banner-plugin');
and add it to your webpack config as follows:
plugins: [
new HtmlWebpackPlugin(),
new HtmlWebpackBannerPlugin({
banner: '<!-- my banner -->',
}),
]
{
banner: string, // the banner as string, it will be wrapped in a comment
raw: boolean, // if true, banner will not be wrapped in a comment
}
MIT
FAQs
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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.