How to Combine Script Files using ScriptBundle in ASP.NET MVC

Introduction

MVC 4 introduced request bundling and minification techniques to reduce request load time. Bundling allows us to request a collection of static files from the server in one HTTP request.

Bundling

The technique of bundling is shown in the diagram below:

Source – Loading script files in separate requests

In the namespace System.web.Optimization, MVC 5 has the following bundle classes:

The browser sends two distinct requests to load two different JavaScript files, MyJavaScriptFile-1.js and MyJavaScriptFile-2.js, in the figure above.

As illustrated below, the bundling technique in ASP.NET MVC allows us to load two JavaScript files, MyJavaScriptFile-1.js and MyJavaScriptFile-2.js, in a single request.

What Bundling Does?

  • Bundling is among the new features of Asp.net MVC that combines the files into a single file per bundle.
  • A bundle may include multiple files, but regardless of the number of files in it, a single request returns the whole bundle.
  • By removing superfluous spaces commented texts, and shortening the names of scoped variables, the entire file’s content has been reduced in size.
  • It is easier for developers to refer to a group of files through a single file,
  • Stylesheet bundles and JavaScript bundles are not the same.

Minification

The minification technique reduces the size of a script or CSS file by deleting extraneous white space and comments, as well as shortening variable names to one character.

Example

Minification will reduce the number of characters in a Javascript file by removing extraneous white spaces, comments, and reducing variable names. Consider the javascript function below as an example. The above JavaScript will be condensed into the snippet below.

Example

Bundling and minification have an impact on the page’s loading time.

Bundle Types

ScriptBundle:

JavaScript minification of single or multiple script files is handled by ScriptBundle.

StyleBundle:

CSS minification for single or multiple style sheet files is handled by StyleBundle.

DynamicFolderBundle:

ASP.NET creates a Bundle object from a folder containing files of the same kind.

The JavaScript minification of single or many script files is handled by ScriptBundle.

Now, in this article, you’ll learn how to use ASP.NET MVC to combine many JavaScript files into a script bundle that can be returned in a single HTTP request.

The ScriptBundle class represents a bundle that minifies and bundles JavaScript code. In an ASP.NET MVC project, the BundleConfig class in the App Start folder can be used to generate style or script bundles. This method has a parameter bundle, which is of the type BundleCollection. At the start of the program, all of the bundles created are added to this bundle parameter. (Instead of using BundleConfig, you can develop your own custom class, but it’s best to stick to standard practice.)

This file contains the RegisterBundles() function, which is called by the global.asax.cs file at the Application Start() event.

The following example shows how to make a script bundle.

Example

We created a new bundle in the above example by making an instance of the ScriptBundle class and passed the virtual path and bundle name into the constructor.

The /bundles/ is a virtual path, and bs-jq-bundle is the name of a bundle. Then, in this bundle, we included two js files, bootstrap.js and jquery-3.3.1.js. After that, we included two js files in this bundle: bootstrap.js and jquery-3.3.1.js. You can use the bundles.Add() method to add the new bundles to the BundleCollection. As mentioned above the bs-jq-bundle will be created in release mode by default. Use BundleTable.EnableOptimizations = true if you want to observe bundles in debug mode.

Use the Scripts.Render() method in the layout view to include the aforementioned bs-jq-bundle in your webpage.

 

Example

In a similar manner, we can use these bundles references in any of our views.

When you run the application in release mode, you’ll notice that the bundle is now generated and loaded in a single request.

Source – Generate the bs-jq-bundle

Include a Directory in Bundle

To add all the files inside a specific directory to a bundle, use the IncludeDirectory method as shown below.

Example

Using Wildcards

The name of the script file in most third-party JavaScript files includes a version. For example, the version of jQuery is included in the file name. The wildcard {version} will automatically pick up a version file that is accessible.

Example

This selector tells the system to choose all files whose names begin with the text ‘jquery’

Using CDN

As demonstrated below, you may also use the Content Delivery Network (CDN) to generate a bundle of files.

Example

Note

From the Application Start event in the Global.asax.cs file, the ASP.NET MVC framework executes BundleConfig.RegisterBundle().As a result, when an application starts, all bundles are added to the BundleCollection.

Conclusion

In this blog, we have learned about how to combine ScriptFiles using ScriptBundle in ASP.NET MVC using directory in bundle, wildcards, CDN with example. This will help you to improve your skills and grip over Asp.net MVC.