dynamic-entry-webpack-plugin
webpack plugin to make entry point as dynamic import
Motivation
-
When creating front-end applications, webpack might generate multiple chunks (based on configurations). In order to load application, certain chunks needs to be present before loading application's main chunk. Example, vendor chunk must be present before main chunk is loaded.
-
Loading of dependent chunks before main chunk is taken by html-webpack-plugin. For example, we might encounter script tags injected in HTML
html-webpack-plugin loads dependent chunks in sequence and finally main chunk is loaded at last. This works fine for SPA, where bundles are intended to be loaded in browser.
-
Consider the scenario where you need to load application bundle conditionally.
For example, loading several micro-frontends bundles at run-time or loading a library.
Such bundles are hosted on different servers and they are included into parent application at runtime. -
For scenarios described above, it will be best if we could load single chunk, which in turn loads all the dependent chunks and main chunk for us.
-
This is where dynamic-entry-webpack-plugin comes handy. It will turn all webpack entry points into dynamic import statements and place them in a dynamic in-memory module. The actual entry point configuration is then updated with this new dyanmic module.
-
Webpack internally has all the information about dependent chunks for given chunk. When dynamically loading a module, webpack ensures that all the dependend modules for dynamic import are loaded first then the asked module is loaded.
-
This behavior of webpack is leveraged to provide only single entry chunk, which will load dependent and main chunks.
Usage
Create a object of plugin and pass it to the webpack plugins config.
const DynamicEntry = ; moduleexports = ... plugins: exportable: true ;
Options
exportable - boolean, optional - To make entry module exportable. Default: true
Entry points
webpack supports entry point config in various formats. So accordingly, dynamic-entry-webpack-plugin behaves in following ways:
-
string
When entry point is string, plugin creates new entry module with following code:
import'<actual webpack entry point>';// ORimport'<actual webpack entry point>'; // if exportable is false -
array
According to webpack when multiple configs are provided in array, all the entries are included in bundle with last entry exported. Providing similar behavior, plugin also imports all the entry points and last entry point is returned.
async {await import'<entry one>';await import'<entry two>';return import'last entry';};// when exportable is false, entry module generated will as follows:async {await import'<entry one>';await import'<entry two>';return import'last entry';};- Above code is auto transpiled to convert async-await syntax to promises using babel-plugin-transform-async-to-promises
-
object
According to webpack, for object entry point, webpack creates multiple bundles with its own runtime. Similar behavior is provided by this plugin as well.
-
function
When given function to entry point it is awaited and result is then processed to form entry module. Return value can be string, array or object and it is processed according to above rules.
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue