Javascript bundlers

From wikinotes

javascript bundlers combine all of your js source into one file, and load it for every page on your website.
this helps avoid CSP/CORS issues by loading js from a trusted source, and avoiding loading potentially malicious js.

See javascript webpack.