Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

html-inline-script-webpack-plugin

icelam292.6kMIT3.2.1TypeScript support: included

A webpack plugin for converting external script files to inline script block. Requires 'html-webpack-plugin' to work.

webpack, webpack4, webpack5, webpack-plugin, html-webpack-plugin, inline, internal, embedded, source, inline-source, script, inline-script

readme

HTML Inline Script Webpack Plugin for webpack (html-inline-script-webpack-plugin)

Latest version Download count Install size ci Package quality

NPM

A webpack plugin for converting external script files <script src="app.js"></script> to inline script block <script>...</script>. Requires html-webpack-plugin to work.

Inspired by react-dev-utils created by Facebook.

Install

Webpack5

npm i html-inline-script-webpack-plugin -D

Webpack4

npm i html-inline-script-webpack-plugin@^1 -D

Usage

By default, the plugin will convert all the external script files to inline script block, and remove the original script file from build assets.

const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlInlineScriptPlugin = require('html-inline-script-webpack-plugin');

module.exports = {
  plugins: [new HtmlWebpackPlugin(), new HtmlInlineScriptPlugin()],
};

Options

Below are lists of options supported by this plugin:

Name Description Type
scriptMatchPattern List of script files that should be processed and inject as inline script. This will be filtered using the output file name. RegExp[]
htmlMatchPattern List of HTML template files that should be processed by this plugin. Useful when you have multiple html-webpack-plugin initialized. This will be filtered using the options?.filename provided by html-webpack-plugin. RegExp[]
assetPreservePattern List of script files that should be preserved by this plugin after inserting them inline. This will be filtered using the output file name. RegExp[]

Here are some examples illustrating how to use these options:

Process only script files that have file name start with runtime~ and app~
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlInlineScriptPlugin = require('html-inline-script-webpack-plugin');

module.exports = {
  plugins: [
    new HtmlWebpackPlugin(),
    new HtmlInlineScriptPlugin({
      scriptMatchPattern: [/runtime~.+[.]js$/, /app~.+[.]js$/],
    }),
  ],
};
Process any script files but only have them inlined in index.html
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlInlineScriptPlugin = require('html-inline-script-webpack-plugin');

module.exports = {
  plugins: [
    new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'static/index.webos.html',
    }),
    new HtmlWebpackPlugin({
      filename: 'page2.html',
      template: 'page2.html',
    }),
    new HtmlInlineScriptPlugin({
      htmlMatchPattern: [/index.html$/],
    }),
  ],
};
Process script files that have file name start with runtime~ and app~ and inject only to index.html
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlInlineScriptPlugin = require('html-inline-script-webpack-plugin');

module.exports = {
  plugins: [
    new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'static/index.webos.html',
    }),
    new HtmlWebpackPlugin({
      filename: 'page2.html',
      template: 'page2.html',
    }),
    new HtmlInlineScriptPlugin({
      scriptMatchPattern: [/runtime~.+[.]js$/, /app~.+[.]js$/],
      htmlMatchPattern: [/index.html$/],
    }),
  ],
};
Process any script files but preserve main.js from build assets
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlInlineScriptPlugin = require('html-inline-script-webpack-plugin');

module.exports = {
  plugins: [
    new HtmlWebpackPlugin(),
    new HtmlInlineScriptPlugin({
      assetPreservePattern: [/main.js$/],
    }),
  ],
};

Known limitations

  1. This plugin does not transform Web Worker syntax like new Worker(new URL('./worker.js', import.meta.url));`. It simply embeds the source code processed by webpack into HTML files, and emits any JavaScript files that is not processed by the plugin.
  2. This plugin is designed to embed script content into HTML files for deployment to environments where only a single file can be uploaded, or where the script file itself is small enough that it doesn't warrant an additional HTTP request. It is not intended for use in development, and may fail if HMR is enabled.

Contributors

Thanks goes to these wonderful people:

@kmalakoff
@kmalakoff
@SorsOps
@SorsOps

changelog

Changelog

3.2.1 (2023-08-09)

Bug Fixes

  • resolve public path base on html-webpack-plugin and webpack config (c333304)

3.2.0 (2023-06-02)

Features

  • support preserving inlined assets by regex (#434) (239e7b9)

3.1.0 (2022-08-05)

Features

  • escape all </script> that appears inside source (cdf4b31)

3.0.1 (2022-07-24)

Bug Fixes

  • unable to match assets when filename contains special characters (ce6be9c)

3.0.0 (2022-02-27)

Features

  • new option for defining HTML templates the plugin should process (1ffe025)

2.0.3 (2021-10-30)

Bug Fixes

  • delete only script files which has been processed by plugin (4e40c19)

2.0.2 (2021-07-04)

Bug Fixes

  • invalid logic on missing script check (#198) (e9f9f26)

2.0.1 (2021-05-05)

Bug Fixes

  • chage the default test scope to avoid targeting map files or gzip files (7539425)

2.0.0 (2021-03-21)

Features

1.1.2 (2021-03-06)

Bug Fixes

  • fix no construct signatures error throw by typescript (d00e1a7)

1.1.1 (2021-03-01)

Bug Fixes

  • ignore .husky and scripts folder when publishing package (f056fa2)

1.1.0 (2021-03-01)

Features

1.0.1 (2021-01-22)

Bug Fixes

  • assets source become undefined in some scenario (d60c640), closes #1

1.0.0 (2020-07-09)

Features

  • html inline script webpack plugin (979d3c8)