🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

webpack-externals-plugin

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-externals-plugin

Provides more powerful externals configuration options

1.0.0
latest
66

Supply Chain Security

100

Vulnerability

73

Quality

75

Maintenance

100

License

Version published
Weekly downloads
321
43.95%
Maintainers
1
Weekly downloads
 
Created

webpack-externals-plugin

Provides more powerful externals configuration options.

Usage

new ExternalsPlugin({ type, test, include, exclude }), where:

  • type represents the type of external (/var|this|commonjs2?|amd|umd/). Defaults to options.output.libraryTarget.
  • test, include, exclude work as they do with loader configuration.

Example

The following webpack configuration considers all modules under the local node_modules/ directory as externals.

webpack.config.js:

var ExternalsPlugin = require('webpack-externals-plugin');
module.exports = {
  entry: './app.js',
  output: {
    path: __dirname + '/dist',
    filename: 'bundle.js',
  },
  plugins: [
    new ExternalsPlugin({
      type: 'commonjs',
      include: __dirname + '/node_modules',
    }),
  ],
};

Differences with options.externals

Webpack externals are only filtered depending on the user request (require('webpack') => webpack).

With this plugin, externals are filtered depending on the path of the resolved module (require('webpack') => <dir_path>/node_modules/webpack/lib/webpack.js).

This lets you include or exclude entire directories depending on the actual path of the resolved module.

FAQs

Package last updated on 20 Feb 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