16 KiB
title | author | description | manager | ms.author | ms.custom | ms.date | ms.devlang | ms.prod | ms.technology | ms.topic | uid |
---|---|---|---|---|---|---|---|---|---|---|---|
Bundle and minifiy static assets in ASP.NET Core | scottaddie | Learn how to optimize static resources in an ASP.NET Core web application by applying bundling and minification techniques. | wpickett | scaddie | mvc | 01/10/2018 | csharp | aspnet-core | aspnet | article | client-side/bundling-and-minification |
Bundle and minifiy static assets in ASP.NET Core
By Scott Addie
This article explains the benefits of applying bundling and minification, including how these features can be used with ASP.NET Core web apps.
What is bundling and minification?
Bundling and minification are two distinct performance optimizations you can apply in a web app. Used together, bundling and minification improve performance by reducing the number of server requests and reducing the size of the requested static assets.
Bundling and minification primarily improve the first page request load time. Once a web page has been requested, the browser caches the static assets (JavaScript, CSS, and images). Consequently, bundling and minification don't improve performance when requesting the same page, or pages, on the same site requesting the same assets. If the expires header isn't set correctly on the assets and if bundling and minification isn't used, the browser's freshness heuristics mark the assets stale after a few days. Additionally, the browser requires a validation request for each asset. In this case, bundling and minification provide a performance improvement even after the first page request.
Bundling
Bundling combines multiple files into a single file. Bundling reduces the number of server requests which are necessary to render a web asset, such as a web page. You can create any number of individual bundles specifically for CSS, JavaScript, etc. Fewer files means fewer HTTP requests from the browser to the server or from the service providing your application. This results in improved first page load performance.
Minification
Minification removes unnecessary characters from code without altering functionality. The result is a significant size reduction in requested assets (such as CSS, images, and JavaScript files). Common side effects of minification include shortening variable names to one character and removing comments and unnecessary whitespace.
Consider the following JavaScript function:
Minification reduces the function to the following:
In addition to removing the comments and unnecessary whitespace, the following parameter and variable names were renamed as follows:
Original | Renamed |
---|---|
imageTagAndImageID |
t |
imageContext |
a |
imageElement |
r |
Impact of bundling and minification
The following table outlines differences between individually loading assets and using bundling and minification:
Action | With B/M | Without B/M | Change |
---|---|---|---|
File Requests | 7 | 18 | 157% |
KB Transferred | 156 | 264.68 | 70% |
Load Time (ms) | 885 | 2360 | 167% |
Browsers are fairly verbose with regard to HTTP request headers. The total bytes sent metric saw a significant reduction when bundling. The load time shows a significant improvement, however this example ran locally. Greater performance gains are realized when using bundling and minification with assets transferred over a network.
Choose a bundling and minification strategy
The MVC and Razor Pages project templates provide an out-of-the-box solution for bundling and minification consisting of a JSON configuration file. Third-party tools, such as the Gulp and Grunt task runners, accomplish the same tasks with a bit more complexity. A third-party tool is a great fit when your development workflow requires processing beyond bundling and minification—such as linting and image optimization. By using design-time bundling and minification, the minified files are created prior to the app's deployment. Bundling and minifying before deployment provides the advantage of reduced server load. However, it's important to recognize that design-time bundling and minification increases build complexity and only works with static files.
Configure bundling and minification
The MVC and Razor Pages project templates provide a bundleconfig.json configuration file which defines the options for each bundle. By default, a single bundle configuration is defined for the custom JavaScript (wwwroot/js/site.js) and stylesheet (wwwroot/css/site.css) files:
Configuration options include:
outputFileName
: The name of the bundle file to output. Can contain a relative path from the bundleconfig.json file. requiredinputFiles
: An array of files to bundle together. These are relative paths to the configuration file. optional, *an empty value results in an empty output file. globbing patterns are supported.minify
: The minification options for the output type. optional, default -minify: { enabled: true }
- Configuration options are available per output file type.
includeInProject
: Flag indicating whether to add generated files to project file. optional, default - falsesourceMap
: Flag indicating whether to generate a source map for the bundled file. optional, default - falsesourceMapRootPath
: The root path for storing the generated source map file.
Build-time execution of bundling and minification
The BuildBundlerMinifier NuGet package enables the execution of bundling and minification at build time. The package injects MSBuild Targets which run at build and clean time. The bundleconfig.json file is analyzed by the build process to produce the output files based on the defined configuration.
[!NOTE] BuildBundlerMinifier belongs to a community-driven project on GitHub for which Microsoft provides no support. Issues should be filed here.
Visual Studio
Add the BuildBundlerMinifier package to your project.
Build the project. The following appears in the Output window:
1>------ Build started: Project: BuildBundlerMinifierApp, Configuration: Debug Any CPU ------
1>
1>Bundler: Begin processing bundleconfig.json
1> Minified wwwroot/css/site.min.css
1> Minified wwwroot/js/site.min.js
1>Bundler: Done processing bundleconfig.json
1>BuildBundlerMinifierApp -> C:\BuildBundlerMinifierApp\bin\Debug\netcoreapp2.0\BuildBundlerMinifierApp.dll
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
Clean the project. The following appears in the Output window:
1>------ Clean started: Project: BuildBundlerMinifierApp, Configuration: Debug Any CPU ------
1>
1>Bundler: Cleaning output from bundleconfig.json
1>Bundler: Done cleaning output file from bundleconfig.json
========== Clean: 1 succeeded, 0 failed, 0 skipped ==========
.NET Core CLI
Add the BuildBundlerMinifier package to your project:
dotnet add package BuildBundlerMinifier
If using ASP.NET Core 1.x, restore the newly added package:
dotnet restore
Build the project:
dotnet build
The following appears:
Microsoft (R) Build Engine version 15.4.8.50001 for .NET Core
Copyright (C) Microsoft Corporation. All rights reserved.
Bundler: Begin processing bundleconfig.json
Bundler: Done processing bundleconfig.json
BuildBundlerMinifierApp -> C:\BuildBundlerMinifierApp\bin\Debug\netcoreapp2.0\BuildBundlerMinifierApp.dll
Clean the project:
dotnet clean
The following output appears:
Microsoft (R) Build Engine version 15.4.8.50001 for .NET Core
Copyright (C) Microsoft Corporation. All rights reserved.
Bundler: Cleaning output from bundleconfig.json
Bundler: Done cleaning output file from bundleconfig.json
Ad hoc execution of bundling and minification
It's possible to run the bundling and minification tasks on an ad hoc basis, without building the project. Add the BundlerMinifier.Core NuGet package to your project:
[!NOTE] BundlerMinifier.Core belongs to a community-driven project on GitHub for which Microsoft provides no support. Issues should be filed here.
This package extends the .NET Core CLI to include the dotnet-bundle tool. The following command can be executed in the Package Manager Console (PMC) window or in a command shell:
dotnet bundle
[!IMPORTANT] NuGet Package Manager adds dependencies to the *.csproj file as
<PackageReference />
nodes. Thedotnet bundle
command is registered with the .NET Core CLI only when a<DotNetCliToolReference />
node is used. Modify the *.csproj file accordingly.
Add files to workflow
Consider an example in which an additional custom.css file is added resembling the following:
To minify custom.css and bundle it with site.css into a site.min.css file, add the relative path to bundleconfig.json:
[!NOTE] Alternatively, the following globbing pattern could be used:
"inputFiles": ["wwwroot/**/*(*.css|!(*.min.css)"]
This globbing pattern matches all CSS files and excludes the minified file pattern.
Build the application. Open site.min.css and notice the content of custom.css is appended to the end of the file.
Environment-based bundling and minification
As a best practice, the bundled and minified files of your app should be used in a production environment. During development, the original files make for easier debugging of the app.
Specify which files to include in your pages by using the Environment Tag Helper in your views. The Environment Tag Helper only renders its contents when running in specific environments.
The following environment
tag renders the unprocessed CSS files when running in the Development
environment:
ASP.NET Core 2.x
ASP.NET Core 1.x
The following environment
tag renders the bundled and minified CSS files when running in an environment other than Development
. For example, running in Production
or Staging
triggers the rendering of these stylesheets:
ASP.NET Core 2.x
ASP.NET Core 1.x
Consume bundleconfig.json from Gulp
There are cases in which an app's bundling and minification workflow requires additional processing. Examples include image optimization, cache busting, and CDN asset processing. To satisfy these requirements, you can convert the bundling and minification workflow to use Gulp.
Use the Bundler & Minifier extension
The Visual Studio Bundler & Minifier extension handles the conversion to Gulp.
[!NOTE] The Bundler & Minifier extension belongs to a community-driven project on GitHub for which Microsoft provides no support. Issues should be filed here.
Right-click the bundleconfig.json file in Solution Explorer and select Bundler & Minifier > Convert To Gulp...:
The gulpfile.js and package.json files are added to the project. The supporting npm packages listed in the package.json file's devDependencies
section are installed.
Run the following command in the PMC window to install the Gulp CLI as a global dependency:
npm i -g gulp-cli
The gulpfile.js file reads the bundleconfig.json file for the inputs, outputs, and settings.
Convert manually
If Visual Studio and/or the Bundler & Minifier extension aren't available, convert manually.
Add a package.json file, with the following devDependencies
, to the project root:
Install the dependencies by running the following command at the same level as package.json:
npm i
Install the Gulp CLI as a global dependency:
npm i -g gulp-cli
Copy the gulpfile.js file below to the project root:
Run Gulp tasks
To trigger the Gulp minification task before the project builds in Visual Studio, add the following MSBuild Target to the *.csproj file:
In this example, any tasks defined within the MyPreCompileTarget
target run before the predefined Build
target. Output similar to the following appears in Visual Studio's Output window:
1>------ Build started: Project: BuildBundlerMinifierApp, Configuration: Debug Any CPU ------
1>BuildBundlerMinifierApp -> C:\BuildBundlerMinifierApp\bin\Debug\netcoreapp2.0\BuildBundlerMinifierApp.dll
1>[14:17:49] Using gulpfile C:\BuildBundlerMinifierApp\gulpfile.js
1>[14:17:49] Starting 'min:js'...
1>[14:17:49] Starting 'min:css'...
1>[14:17:49] Starting 'min:html'...
1>[14:17:49] Finished 'min:js' after 83 ms
1>[14:17:49] Finished 'min:css' after 88 ms
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
Alternatively, Visual Studio's Task Runner Explorer may be used to bind Gulp tasks to specific Visual Studio events. See Running default tasks for instructions on doing that.