CodeNewbie Community 🌱

Cover image for The Four Core Concepts of webpack
Patricia Nicole Opetina
Patricia Nicole Opetina

Posted on

The Four Core Concepts of webpack

webpack is a famous static module bundler. Module bundlers are used to bundle Javascript modules into a single file, which can then be executed by the browser. They help manage the dependencies in your code and load assets following the dependency order.

There are four basic concepts in webpack: entry, output, modules and plug-ins.

These configurations are added in webpack.config.js of a project.

1. entry

entry and output are related to each other.

webpack.config.js

module.exports = {
  entry: './path/to/my/entry/file.js',
};
Enter fullscreen mode Exit fullscreen mode

The snippet above is an example of an entry configuration. You are basically telling webpack the very first file it needs to look at when it starts creating the dependency graph. The dependency graph starts from this entry file and then builds its dependencies and the dependencies of its dependencies and so on. webpack goes through all of these dependencies and creates modules then repeats this entire process all over the entire application.

2. output

The output configuration tells webpack how and where it should put the bundles and its format. For instance with the output value below, you are telling webpack to put the bundles in a javascript file named my-first-webpack.bundle.js, in a dist folder under the same directory to where the webpack.config.js is located.

webpack.config.js

const path = require('path');

module.exports = {
  entry: './path/to/my/entry/file.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'my-first-webpack.bundle.js',
  },
};
Enter fullscreen mode Exit fullscreen mode

3. rules and loaders

The rules and loaders config instruct webpack how it should process different file types and convert them into valid modules before they are added in the dependency graph.

loaders usually have two properties, namely:

  1. test . The test property tells the type of file that will be processed.
  2. use . The use property tells webpack what loader will be used in processing the file.

For example, building from the config written earlier, the modules property below is telling webpack this:

"Hey webpack compiler, when you come across a path that resolves to a .css file inside of a require()/import statement, use the css-loader to transform it before you add it to the bundle."

webpack.config.js

const path = require('path');
const ExamplePlugin = require('ExamplePlugin.js')

module.exports = {
  entry: './path/to/my/entry/file.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'my-first-webpack.bundle.js',
  },
  module: {
    rules: [
        { 
          test: /\.css$/, 
          use: 'css-loader' 
        }
    ],
  },
  plugins: [
     new ExamplePlugin()
  ]
};
Enter fullscreen mode Exit fullscreen mode

4. plugins

Plugins allow you to perform any kind of functionality. While loaders are used to transform certain types of modules, plugins can be leveraged to perform a wider range of tasks like bundle optimization, asset management, injection of environment variables, minifying files, etc. For instance, the example plugin below will print the message "Hello I am learning" everytime you run webpack. Webpack already has a rich collection of plugins, so developers can also check them out before reinventing the wheel.

class ExamplePlugin {
   apply(compiler) {
      compiler.plugin("run", (compiler, callback) {
         console.log("Hello I am learning");
         callback();
      });
   }
}
Enter fullscreen mode Exit fullscreen mode

I am still in the process of learning webpack but I believe that simply understanding these concepts will help in confidently creating webpack configurations fitting the developer's needs.

REFERENCES
[1] Webpack Official Documentation
[2] Webpack Academy

Top comments (0)