Bundling And Minification In ASP.NET Core

Introduction

Bundling is a way or technique to combine multiple JavaScript or CSS files into a single file. Minification is a technique to reduce the size of the file by removing white space and commented code. Both Bundling and Minification are used to improve the performance of our web application by reducing the number of requests to the Server and reducing the size of the requested assets, such as JavaScript and CSS files.

In ASP.NET Core applications, we can bundle and minify the client resource (such as JavaScript and CSS) during the design time using third party tools, such as Grunt and Gulp. Doing bundling and minification at design time means that minified files are created at the time of deployment of the application. It is important to reduce server load however it increases build complexity. Bundling and minification improve the performance of the page request load time. Once the browser has requested the web page and caches related assets, bundling and minification do not provide any performance issue on this page.

Bundling

Bundling is a process of combining multiple files into single file. It reduces the number of requests to the Server, which are required to load the page asset or resources. This only improves page load performance.

Using gulp-concat plugin, we can achieve Bundling. This plugin can be installed from npm (Node Package Manager). So, we need to add gulp-concat package to devDependencies section of our package.json file. If package.json file is not present in the project, we can add this file to the project.


Package.json

  1. {     
  2. "version""1.0.0",  
  3.     "name""asp.net",  
  4.     "private"true,  
  5.   "devDependencies": {  
  6.     "gulp""3.8.11",  
  7.     "gulp-concat""2.5.2",  
  8.     "rimraf""2.2.8"  
  9.   }  
  10. }  
Now, we need to run "npm install" command from command window, to install the specific version of packages. Visual Studio will install the missing packages automatically on build or when package.json modifies.

The next step is to import "gulp-concat" module to gulpfile.js. If gulpfile.js is not present in project, we can add it from new Item list.

  1. var gulp = require("gulp"),  
  2.     rimraf = require("rimraf"),  
  3.     concat = require("gulp-concat");  
Now, we have to specify the files that we want to bundle. In this example, I have create "paths" array to specify all paths that need to be bundled.
  1. var paths = {  
  2.     webroot: "./wwwroot/"  
  3. };  
  4.   
  5. paths.js = paths.webroot + "js/**/*.js";  
  6. paths.concatJsDest = paths.webroot + "js/site.min.js";  
Next step is to define gulp tasks used for concatinating the desired files and create result file in destination folder.
  1. gulp.task("bundle"function () {  
  2.     return gulp.src([paths.js])  
  3.         .pipe(concat(paths.concatJsDest))  
  4.         .pipe(gulp.dest("."));  
  5. });  
The gulp.src function emits a stream of files which are piped to gulp plugins. An array of globs is used to specify the files to emitt using node-glob syntax. The glob which begins with "!" excludes matching files from the glob results.
  1. gulp.task("bundle"function () {  
  2.     return gulp.src([paths.js, "!" + paths.concatJsDest])  
  3.         .pipe(concat(paths.concatJsDest))  
  4.         .pipe(gulp.dest("."));  
  5. });  
To test gulp task, I have created three JavaScript files under “wwwroot\js” folder and each file contains single function.


Test.js

  1. function test() {  
  2.     console.log("test");  
  3.  
Test1.js
  1. function test1() {  
  2.     console.log("test1");  
  3. }  
Test2.js
  1. function test2() {  
  2.     console.log("test2");  
  3.  
Now, for bundling the JavaScript, we need to run "gulp taskname" command from command prompt. Here, our task name is "bundle", so command becomes "gulp bundle".


As a result of the task, gulp is concating all three JavaScript files into site.min.js file. There is one limitation over here, the destination file (site.min.js in our case) must be present on the project. It means that gulp command cannot create new files within project, it just updates an existing file.

Minification

Minification is technique to reduce the size of the file by removing white space and commented code. It helps to reduce the size of requested assets such as CSS, JavaScript. Minification tasks include removing unnecessary white space, removing comments, and shortening variable names to one character.

To minify our JavaScript files, we can use the “gulp-uglify” plugin and for CSS, we can use “gulp-cssmin” plugin. So, first of all, these packages must be mentioned in package.json file.

Package.json

  1. {  
  2.   "version""1.0.0",  
  3.   "name""asp.net",  
  4.   "private"true,  
  5.   "devDependencies": {  
  6.     "gulp""^3.9.1",  
  7.     "gulp-concat""2.5.2",  
  8.     "gulp-cssmin""0.1.7",  
  9.     "gulp-uglify""1.2.0",  
  10.     "rimraf""2.2.8"  
  11.   }  
  12.  
The next step is to import “gulp-uglify” and “gulp-cssmin” module to gulpfile.js.
  1. var gulp = require("gulp"),  
  2.     rimraf = require("rimraf"),  
  3.     concat = require("gulp-concat"),  
  4.     cssmin = require("gulp-cssmin"),  
  5.     uglify = require("gulp-uglify");  
Now, we have to specify the files that we want to minify. In this example, I have create "paths" array to specify all path that need to minify.
  1. var paths = {  
  2.     webroot: "./wwwroot/"  
  3. };  
  4.   
  5. paths.minJs = paths.webroot + "js/**/*.min.js";  
Now, we need to add task that perform minification. The function “uglify()” is used to minify the JavaScript file and "cssmin()" function is used to minify the CSS files.
  1. return gulp.src([paths.js, "!" + paths.minJs])  
  2.     .pipe(uglify())  
  3.     .pipe(gulp.dest("."));  
Now, to minify the JavaScript, we need to run "gulp taskname" command from command prompt. Here, our task name is "min", so command becomes "gulp min".


As a result of the run gulp task, gulp is minifying all three JS within same file.

Execute the gulp command using Task runner

We can also run the gulp command using Visual Studio Task Runner. Task Runner is located at Tools menu in VS 2015.


To run gulp command using Visual Studio Task Runner Explore, select task, right click on task and "Run".


We can also bind these tasks to run during certain Visual Studio events. One task can be bound with multiple events and with any event. Following events can be bound with gulp tasks.

  • Before Build
  • After Build
  • Clean
  • Project Open

When we bind task with any event, it is reflected in gulpfile.js file. We can also do this directly by modifying the binding code in gulpfile.js file.

  1. /// <binding AfterBuild='min' />  

Summary

The integration of gulp with Visual Studio makes it simple to manage JavaScript and CSS. We can create tasks for bundling and minification that can be integrated with any Visual Studio event.

Up Next
    Ebook Download
    View all
    Learn
    View all