JavaScript minification
JavaScript applications are written as a collection of
.js
files that are usually transformed before being served in a browser. One reason to transform is to improve page load time. There are two primary components to improving page load time: bundling multiple files together, and minifying to make the bundle size smaller.
Source: JavaScript minification.