What is Bundling and Minification in MVC?

Bundling is one of the features of MVC. 

By implementing this, we can improve performance request load time. Minification is the process of removing unnecessary data without changing its functionality such as removing white spaces, comments, converting the large variable names to small, etc.

BUNDLING - It lets us combine multiple JavaScript (.js) files or multiple cascading style sheet (.css) files, so that they can be downloaded as a unit, rather than making individual HTTP requests for different js and css files.

MINIFICATION - It squeezes out whitespace and performs other types of compression to make the downloaded files as small as possible.

Post a Comment

Previous Post Next Post