Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
JavaScript Minification
Play lesson

JavaScript Tutorial - JavaScript Minification

4.0 (0)
13 learners

What you'll learn

This course includes

  • 12.3 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

Link for all dot net and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat/playlists Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspot.com/2015/01/javascript-minification.html Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help. https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation=1 What is JavaScript Minification JavaScript Minification is the process of reducing the script file size by removing comments, extra whitespaces and new line characters that are not needed for executing JavaScript code. JavaScript Minification may reduce the size of the file by 30 to 90%. The Minification process will not change its original functionality. What are the benefits of JavaScript Minification The JavaScript files need to be downloaded to the client machine before the browser can execute your JavaScript code. Since JavaScript Minification reduces the size of the file we have the following benefits 1. Reduced download time 2. Less bandwidth consumption of your website 3. Reduced JavaScript execution time as all the comments, extra whitespaces and new line characters are removed from the minified version 4. Multiple JavaScript files can be compressed into one minified JavaScript file. This means there are now reduced number of HTTP requests to your server, which in turn reduces the load on the server and allows more users to access your website. What are the disadvantages of JavaScript Minification Readability is lost and debugging can be difficult as comments, extra whitespaces and new line characters are removed. However, if there is a production issue, use the non-minified version of the script file for debugging. So in production environment use minified version for performance and in development environment use non-minified version for readability and debugging. JavaScript minification tools JSMin http://www.crockford.com/javascript/jsmin.html Closure Compiler https://developers.google.com/closure/compiler/ YUI Compressor http://yui.github.io/yuicompressor/ There are also several websites that provide online JavaScript minification. The following is one such website http://marijnhaverbeke.nl/uglifyjs

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere