Socket
Socket
Sign inDemoInstall

script-ext-html-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

script-ext-html-webpack-plugin

Enhances html-webpack-plugin functionality with async and defer attributes for script elements


Version published
Weekly downloads
54K
increased by17.25%
Maintainers
1
Weekly downloads
 
Created
Source

Script Extension for HTML Webpack Plugin

npm version Dependency Status Build status js-semistandard-style

NPM

Enhances html-webpack-plugin functionality with async and defer attributes for <script> elements.

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.

The raw html-webpack-plugin creates all <script> elements as synchronous. This plugin allows you to define which scripts should have the async and defer attributes.

Installation

Install the plugin with npm:

$ npm install --save-dev numical/script-ext-html-webpack-plugin

Basic Usage

Add the plugin to your webpack config as follows:

plugins: [
  new HtmlWebpackPlugin(),
  new ScriptExtHtmlWebpackPlugin()
]  

Configuration

The above configuration will actually do nothing due to the configuration defaults. You must pass a hash of configuration options to the plugin to cause the addition of attributes:

  • sync: array of String's and/or RegExp's defining scripts that should have no attribute. Default value of the option is an empty array.
  • async: array of String's and/or RegExp's defining scripts that should have an async attribute. Default value of the option is an empty array.
  • defer: array of String's and/or RegExp's defining scripts that should have a defer attribute. Default value of the option is an empty array.
  • defaultAttribute: 'sync' | 'async' | 'defer' The default attribute to set - 'sync' actually results in no attribute. Default value of the option is 'sync'.

In the arrays a String value matches if it is a substring of the script name.

In more complicated use cases it may prove difficult to ensure that the pattern matching for different attributes are mutually exclusive. To prevent confusion, the plugin operates a simple precedence model:

  1. if a script name matches a RegEx or String from the sync option, it will have no attribute;

  2. if a script name matches a Regex or String from the async option, it will have the async attribute, unless it matched condition 1;

  3. if a script name matches a Regex or String from the defer option, it will have the defer attribute, unless it matched conditions 1 or 2;

  4. if a script name does not match any of the previous conditions, it will have the `defaultAttribute' attribute.

Some examples:

All scripts set to async:

plugins: [
  new HtmlWebpackPlugin(),
  new ScriptExtHtmlWebpackPlugin({
    defaultAttribute: 'async'
  })
]  

All scripts set to async except 'first.js' which is sync:

plugins: [
  new HtmlWebpackPlugin(),
  new ScriptExtHtmlWebpackPlugin({
    sync: ['first.js'],
    defaultAttribute: 'async'
  })
]  

All scripts with 'important' in their name are sync and all others set to defer:

plugins: [
  new HtmlWebpackPlugin(),
  new ScriptExtHtmlWebpackPlugin({
    sync: ['important'],
    defaultAttribute: 'defer'
  })
]  

Alternatively, using a regular expression:

plugins: [
  new HtmlWebpackPlugin(),
  new ScriptExtHtmlWebpackPlugin({
    sync: [/important/],
    defaultAttribute: 'defer'
  })
]  

And so on, to craziness:

plugins: [
  new HtmlWebpackPlugin(),
  new ScriptExtHtmlWebpackPlugin({
    sync: [/imp(1|2){1,3}}/, 'initial'],
    defer: ['slow', /big.*andslow/],
    defaultAttribute: 'async'
  })
]  

Any problems with real-world examples, just raise an issue.

Keywords

FAQs

Package last updated on 10 Apr 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc