Thennarasu N
what is bundling and minification in mvc?
By Thennarasu N in C# on Oct 20 2016
  • Manav Pandya
    Feb, 2017 9

    It is basically minified css and JS file to use less space that being loaded by our application

    • 2
  • Thennarasu N
    Oct, 2016 20

    Bundling and minification are two techniques you can use in ASP.NET 4.5 to improve request load time. Bundling and minification improves load time by reducing the number of requests to the server and reducing the size of requested assets (such as CSS and JavaScript.)

    • 2
  • Mrunal
    Jan, 2018 10

    Bundling and minification techniques are used to improve request load time by reducing number of request to the server. Bundling combines multiple file into single file like CSS, javascript. Fewer files means fewer request ultimately improves load performance. Minification is the removal of unnecessary things for code optimzation like white space,comments etc.

    • 0
  • Kailash Salvi
    Sep, 2017 25

    Bundling is the concept where we group files i.e css, js files, and request to the server in a single attempt. Bundling helps to overcome load from the server that happen in case of individual request.Saves bandwidth and load application faster.Minification : In manification, we remove extra spaces from js files,remove commented lines to lower the size of the js files that helps us to load js file fasters.

    • 0
  • sushil kumar
    Jul, 2017 20

    Bundling means grouping of same type of file in a single unit.Minification means removing extra space, multilines and comments from .js or .css so that file size should be reduced which will take less time to load.

    • 0
  • sushil kumar
    Jul, 2017 20

    Bundling means grouping of same type of file in a single unit.Minification means removing extra space, multilines and comments from .js or .css so that file size should be reduced which will take less time to load.

    • 0
  • sushil kumar
    Jul, 2017 20

    Bundling means grouping of same type of file in a single unit.Minification means removing extra space, multilines and comments from .js or .css so that file size should be reduced which will take less time to load.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS