Do script loaders replace the need to do script combining?
Or are they really complementary tools?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JavaScript loaders only defer JavaScript loading and provide lazy load or on-demand load experience for us. But they don’t reduce HTTP requests. Thus, it totally depends. If you load 200KB of JavaScript as a combined file at first and only use 10KB, then you’d better separate JavaScript codes into their original files and use a loader to defer loading process to increase your performance.