New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@insanecoding/html-webpack-banner-plugin

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@insanecoding/html-webpack-banner-plugin

Adds a banner to the top of generated html

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Forked from html-webpack-banner-plugin to support HtmlWebpackPlugin v.4

html-webpack-banner-plugin

Build Status

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.

Installation

Install the plugin with npm:

$ npm install -d html-webpack-banner-plugin

Install the plugin with yarn:

$ yarn add -D html-webpack-banner-plugin

Basic Usage

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 -->',
    }),
]

Options

{
    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
}

License

MIT

Keywords

webpack

FAQs

Package last updated on 19 Apr 2020

Did you know?

Socket

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.

Install

Related posts