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

fixed-webpack4-html-webpack-inline-chunk-plugin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fixed-webpack4-html-webpack-inline-chunk-plugin

(fixed bug , now can work in webpack 4)webpack plugin to inline chunk in html webpack plugin

latest
Source
npmnpm
Version
2.0.2
Version published
Maintainers
1
Created
Source

Inline Chunk Webpack Plugin

This is a webpack plugin that inline your chunks that is written as links or script using HtmlWebpackPlugin. It can be use to inline manifest within script tag to save a http request as described in this example. It is not limited to manifest chunk but can inline any other chunk.

This plugin requires HtmlWebpackPlugin v2.10.0 and above.

Installation

Install the plugin with npm:

$ npm i fixed-webpack4-html-webpack-inline-chunk-plugin --save-dev

Configuration

  • inlineChunks: An array of names of chunk to inline.
  • quiet: If set to true the plugin won't display any log information. (default value: false)
//webpack.config
const InlineChunkWebpackPlugin = require('fixed-webpack4-html-webpack-inline-chunk-plugin');
module.exports = {
  //.....
  //.....
  plugins: [
    //...
    //...
    	new InlineChunkWebpackPlugin({
        inlineChunks: ['manifest']
	})
  //...
  ]
  //.....
  //.....
}

Example Usage

Webpack's runtime changes with every build. For effective long-term caching, we separate the runtime code in manifest.js. This manifest.js is very small and increases our startup time as it is a separate http request. Inlining the generated manifest.js in the index.html is a solution.

Split webpack runtime in manifest and inline it.

// for explicit vendor chunk config
{
  entry: {
    app: './main.js',
    vendors: ['react','redux']
  },
  output: {
    path: path.join(__dirname, "js"),
    filename: "[name].[chunkhash].js",
    chunkFilename: "[chunkhash].js"
  },
  plugins: [
    new webpack.optimize.CommonsChunkPlugin({
      names: ['common', 'manifest']
    }),
    new HtmlWebpackPlugin({
      // your options,
      excludeChunks: ['vendors']
    }),
    new InlineChunkWebpackPlugin({
        inlineChunks: ['manifest']
	})
  ]
}

License

This project is licensed under MIT.

FAQs

Package last updated on 20 Apr 2019

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