Webpack Glossary

Browse 6 webpack terms defined in plain English, from the cultural dictionary of computing.

6 Webpack Terms

Bundler
A tool that combines multiple source files (and their dependencies) into one or more optimized output files for deployment — in JavaScript, tools like Webpack,...
Loader
In build tools like webpack, a transformer that processes a file through a pipeline before bundling — for example, `babel-loader` transpiles ES6+ to ES5, and...
Module Federation
A webpack 5 feature that allows independently built and deployed JavaScript applications to share modules at runtime by exposing and consuming remote entry...
Rspack
A Rust-based JavaScript bundler designed as a drop-in replacement for Webpack, offering 5-10x faster build times while maintaining compatibility with the...
Webpack Community
The ecosystem of users, maintainers, plugin authors, and educators around Webpack and related build tooling. In frontend engineering culture, the Webpack...
Webpack Plugin
A JavaScript class with an apply(compiler) method that hooks into webpack's build lifecycle via its tapable event system, enabling custom behavior such as...

Related Topics