New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

autoload-modules-loader

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

autoload-modules-loader

This is a webpack loader that automatically load additional modules whenever a particular module is loaded.

  • 0.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

autoload-modules-load

This is a webpack loader that automatically load additional modules whenever a particular module is loaded.

This is usefully for automatically loading plugins for libraries like jquery without having to manually require the plugins before before using them.

Adapted from https://github.com/webpack-contrib/exports-loader.

Configuration

module: {
    rules: [
        {
            test: /\.js[x]?$/,
            use: [
                {
                    loader: 'autoload-plugins-loader',
                    options: {
                        moduleToPluginsMap: {
                            [path.resolve(__dirname, 'fixtures/dep-a.js')]: [
                                path.resolve(__dirname, 'fixtures/dep-a-plugin-1.js'),
                                path.resolve(__dirname, 'fixtures/dep-a-plugin-2.js'),
                            ],
                            [path.resolve(__dirname, 'fixtures/dep-b.js')]: [
                                path.resolve(__dirname, 'fixtures/dep-b-plugin.js'),
                            ],
                        },
                    },
                },
            ],
        },
        {
            test: /\.handlebars$/,
            use: [
                {
                    loader: 'autoload-plugins-loader',
                    options: {
                        moduleToPluginsMap: {
                            [require.resolve('handlebars/runtime')]: [
                                path.resolve(__dirname, 'fixtures/handlebars-extras.js'),
                            ],
                        },
                    },
                },
                {
                    loader: 'handlebars-loader',
                },
            ],
        },
    ],
},

Notes:

  • all paths must be absolute paths.
  • must be run after transpiling import statements to requires.

FAQs

Package last updated on 15 Dec 2017

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