Table of contents
1.
Introduction 
1.1.
What is Webpack?
1.2.
What is an Asset?
2.
Webpack as Module Bundler
3.
Let’s get started with Webpack
4.
Webpack Configuration
5.
Modes of Webpack
6.
Development Server in Webpack
7.
Frequently Asked Questions
8.
Key Takeaways
Last Updated: Mar 27, 2024

Introduction to Webpack

Author Sneha Mallik
1 upvote
Career growth poll
Do you think IIT Guwahati certified course can help you in your career?

Introduction 

It's typically a good idea to start with Grunt and Gulp to grasp Webpack. File Paths are the input to a Grunt task or a Gulp pipeline (globs). Different processes can be used to run the relevant files. Transpile, concatenate, minify, and so on are common examples. This is a fantastic idea; however, neither Grunt nor Gulp comprehends your project's structure. If we compare Gulp and Grunt to Webpack, we can say that Gulp and Grunt deal with files, while Webpack deals with projects.

 

You specify a single path with Webpack. It is the route to your starting position. Typically, this is index.js or main.js. Webpack will now investigate the application. It will figure out how everything is connected using statements like require, import, etc., URL values in CSS, href values in image tags, and so on. It generates a comprehensive dependency graph of all the assets required to operate your application. All of that is pointing to the same file.

Also See, Dropdown in React JS

What is Webpack?

Webpack is a popular Node.js-based module bundling system.  It can manage the combination and minification of JavaScript and CSS files and additional assets such as picture files (spriting) through the usage of plugins. Webpack is preferred over Cassette or ASP.NET Bundling and is the suggested bundling solution.


ReactJS.NET will only be utilized for server-side rendering, and our project will bundle its own copy of react and react-dom with webpack.


Webpack is a popular bundler for JavaScript apps that has outstanding support and is maintained by a skilled team. It's also quite simple to set up.

It comes with the following packages for us:

  • webpack-cli: it is a command-line tool that allows us to run webpack commands.
  • webpack-dev-server: it is a client-side server that may reload live for testing purposes only.
  • html-webpack-plugin: this will generate and update our application's HTML templates.
  • HMR-plugin: a plugin that enables our application's hot module reloading.

And there's so much more. Many plugins in Webpack make our development process easier.

What is an Asset?

A file is an asset. It could be an image, CSS, less, JSON, JS, JSX, and so on. Webpack creates a dependency graph, and this file represents a node in that graph.

Webpack as Module Bundler

Webpack is a module bundler that has a larger definition of what a module is. Modules in Webpack are:

  • Common JS Modules (Modules that are commonly used in JS)
  • AMD(Asynchronous Module Definition) Modules
  • CSS import
  • ESM - ES(ECMAScript) Modules 
  • Images URL

Also read - AMD vs Intel

Webpack can ingest dependencies from any of these above sources.

 

Webpack's ultimate objective is to unify all of these various sources and module types in such a way so that you can import everything in your JavaScript code and produce a shippable output.

Let’s get started with Webpack

To begin using webpack, make a new folder and move into it to build an NPM project:

mkdir webpack-tutorial && cd $_
npm init -y
You can also try this code with Online Javascript Compiler
Run Code

 

Install webpack, webpack-cli, and the webpack-dev-server once inside:

npm i webpack webpack-cli webpack-dev-server --save-dev
You can also try this code with Online Javascript Compiler
Run Code

 

Open package.json and create a "dev" script to execute webpack from an NPM script quickly:

"scripts":{
    "dev": "webpack --mode development"
},
You can also try this code with Online Javascript Compiler
Run Code

This script tells Webpack to run in development mode, which is useful for working locally.

Webpack Configuration

Webpack may work without a configuration for basic tasks, but you'll eventually reach your limit. Create a webpack.config.js file in the project folder to configure Webpack via a file:

touch webpack.config.js
You can also try this code with Online Javascript Compiler
Run Code

Webpack is built in JavaScript and runs on Node.js, which is a headless JavaScript environment. You'll need at least a module.exports in this file, which is the Node.js Common JS export:

module.exports = {
    //
};
You can also try this code with Online Javascript Compiler
Run Code

We may adjust how webpack behaves by adding or modifying the following in webpack.config.js:
 

  • Entry point

An entry point for webpack is where all of a frontend project's dependencies are gathered. In fact, it's just a JavaScript file.

These dependencies form a dependency graph.

Webpack's default entry point (since version 4) is 'src/index.js', which can be modified. There are several entrance points for webpack.

 

  • Output

During the build process, the generated JavaScript and static files are collected in the output.

Webpack's default output folder (from version 4) is dist/, which is also configurable.

The bundle is made up of the resulting JavaScript files.
 

  • Loaders

Loaders are third-party extensions that assist Webpack in dealing with a variety of file formats. There are loaders for CSS, pictures, and txt files, for example.

A loader's job is to convert files (other than JavaScript) into modules. Webpack can utilize the file as a dependency in your project once it has been converted to a module.

 

  • Plugins

Plugins are the third-party extensions that modify webpack's behaviour. There are plugins for extracting HTML, CSS, and setting up environment variables, for example.
 

  • Code Splitting

Code splitting, often known as lazy loading, is a strategy for avoiding larger bundles.

With code splitting, developers can choose to load entire blocks of JavaScript only in reaction to certain user interactions, such as mouse clicks or route changes (or other conditions).

When a piece of code is broken into pieces, it becomes a chunk.

 

For example, to alter the entry point path, we can do the following:

const path = require("path");

module.exports = {
  entry: { index: path.resolve(__dirname, "source", "index.js") }
};
You can also try this code with Online Javascript Compiler
Run Code

 

Webpack will now seek for the first file to load in ‘source/index.js’. Without changing the output of our code, we can do the following changes:

const path = require("path");

module.exports = {
  output: {
    path: path.resolve(__dirname, "build")
  }
};
You can also try this code with Online Javascript Compiler
Run Code

With this setting, webpack will place the bundle in ‘build’ rather than ‘dist’.

Modes of Webpack

There are two modes of operation for webpack: 

  • Development
  • Production

The primary distinction is that production mode applies minification and other optimizations to your JavaScript code automatically.

Development Server in Webpack

To install the webpack-dev-server, we need to run the following command:

npm i webpack-dev-server --save-dev
You can also try this code with Online Javascript Compiler
Run Code

 

‘webpack-dev-server’ is a useful development package. We can start a local server to serve our files after everything is set up.

Open package.json and add a "start" script to configure webpack-dev-server:

"scripts": {
    "dev": "webpack --mode development",
    "start": "webpack serve --open 'Firefox'",
  },
You can also try this code with Online Javascript Compiler
Run Code

We can easily operate the server with this script. Now go ahead and run:

npm start
You can also try this code with Online Javascript Compiler
Run Code

Your default browser should now be up and running. You should also see a script tag in the browser's console, with our main JavaScript bundle injected:

<script> tag in the console of the browser indicating the application is running

Frequently Asked Questions

  1. What is the objective of webpack?

Ans: Webpack's ultimate objective is to unify all of these different sources and module types so that you can import everything in your JavaScript code and produce a shippable output.

Webpack can ingest dependencies from the common JS modules, AMD modules, CSS import, ES modules and Images URL.

Webpack is widely used modular bundler for Javascript applications.

 

2. What are some benefits of webpack?

Ans: In a dependency graph, using Webpack and static assets has a lot of advantages. Here are a few examples:

  • Dead asset elimination
  • Code splitting becomes easier
  • Will be able to control how assets are processed
  • It will help in stable production deploys
  • Webpack will slow you down at first, but when utilized correctly, it will provide significant speed gains. You'll notice that the page is reloading quickly. CSS handling at its finest. Webpack automatically converts file names to hashes of the file contents, etc., causing CDN(Content Delivery Networks) cache-busting.

 

3. Can we use React without webpack?

Ans: Webpack is a fantastic tool with a variety of configuration choices. Everything is feasible with the right plugin, including live reloading, hot reloading, and multithreaded transpiling. However, as a natural trade-off for its adaptability, Webpack lacks simplicity and ease-of-use.

We can use React without webpack. We don't even need JSX; we can write React without it. If you like, you can use React.createElement. If you want to use JSX, you'll need Babel, which works great with grunt.

Key Takeaways

In this blog, we went over the fundamentals of webpack. We learned about how to get started with webpack and how to configure the webpack. We learned about modes of webpack and webpack as a modular bundle.

 

We also learnt about the development server of webpack. That's all when it comes to setting up webpack with React for both general and particular configuration needs. If you wish to know about this even more, the webpack docs may provide you with more information on how to do so.

 

Enroll in our Advance Front-end Web Development Course- React.js to deeply understand the concept of webpack in Web Development. 

Credits: GIPHY

 

Happy Developing!

Live masterclass