webpack plugin to load modules like jquery into browser without importing them with require or import statements
Usage:
new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' });
Often questions: 1) migration between webpack versions; 2) compatibility with other methods to achieve the same; 3) multiple times loaded modules.