JS Merge vs JS Bundle which one is better for Google rankingRemove render-blocking JavaScript for google mapsMagento 2 - Between “Rest” and “Soap”, Which is better then one?Magento 2 : How to merge JS for frontend?Change magento url structure for better Google indexHow to disable Js merge for adminWhich one is a better way for customize the admin email templates?Which is better way in magento2 for social login?Which is the better css framework for a magento 2 custom theme?Apptha Marketplace vs Webkul Mangeto Marketplace. Which one is better UI/UX support, cost?How to get a good Google Pagespeed mobile score for a Magento2 site?

What was this black-and-white film set in the Arctic or Antarctic where the monster/alien gets fried in the end?

Beginner's snake game using PyGame

Different PCB color ( is it different material? )

How should I push back against my job assigning "homework"?

Looking after a wayward brother in mother's will

How can a single Member of the House block a Congressional bill?

Can a rogue effectively triple their speed by combining Dash and Ready?

Do Multiclassed spellcasters add their ability modifier or proficiency bonus twice when determining spell save DC?

How can I offer a test ride while selling a bike?

Is the world in Game of Thrones spherical or flat?

What are the problems in teaching guitar via Skype?

If a problem only occurs randomly once in every N times on average, how many tests do I have to perform to be certain that it's now fixed?

Thousands and thousands of words

Why does the UK have more political parties than the US?

My player wants to cast multiple charges of magic missile from a wand

What caused the tendency for conservatives to not support climate change regulations?

Do creatures all have the same statistics upon being reanimated via the Animate Dead spell?

Adding strings in lists together

How to make the POV character sit on the sidelines without the reader getting bored

Creating Fictional Slavic Place Names

Can non-English-speaking characters use wordplay specific to English?

Difference between antennas for wifi vs ham repeaters

How crucial is a waifu game storyline?

How did early x86 BIOS programmers manage to program full blown TUIs given very few bytes of ROM/EPROM?



JS Merge vs JS Bundle which one is better for Google ranking


Remove render-blocking JavaScript for google mapsMagento 2 - Between “Rest” and “Soap”, Which is better then one?Magento 2 : How to merge JS for frontend?Change magento url structure for better Google indexHow to disable Js merge for adminWhich one is a better way for customize the admin email templates?Which is better way in magento2 for social login?Which is the better css framework for a magento 2 custom theme?Apptha Marketplace vs Webkul Mangeto Marketplace. Which one is better UI/UX support, cost?How to get a good Google Pagespeed mobile score for a Magento2 site?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















JS bundling saves page size in MBs but bundled js loaded synchronously. And the browser waits for js download completion.



But in JS Merge Magento merges only those js which are required synchronously. And browser only waits for merged JS which is much lighter than bundled one. And rest of the JS loaded asynchronously.



Somewhere I have seen it is better to load js asynchronously if using HTTP2. And Google also recommends deferring JS.










share|improve this question




























    1















    JS bundling saves page size in MBs but bundled js loaded synchronously. And the browser waits for js download completion.



    But in JS Merge Magento merges only those js which are required synchronously. And browser only waits for merged JS which is much lighter than bundled one. And rest of the JS loaded asynchronously.



    Somewhere I have seen it is better to load js asynchronously if using HTTP2. And Google also recommends deferring JS.










    share|improve this question
























      1












      1








      1








      JS bundling saves page size in MBs but bundled js loaded synchronously. And the browser waits for js download completion.



      But in JS Merge Magento merges only those js which are required synchronously. And browser only waits for merged JS which is much lighter than bundled one. And rest of the JS loaded asynchronously.



      Somewhere I have seen it is better to load js asynchronously if using HTTP2. And Google also recommends deferring JS.










      share|improve this question














      JS bundling saves page size in MBs but bundled js loaded synchronously. And the browser waits for js download completion.



      But in JS Merge Magento merges only those js which are required synchronously. And browser only waits for merged JS which is much lighter than bundled one. And rest of the JS loaded asynchronously.



      Somewhere I have seen it is better to load js asynchronously if using HTTP2. And Google also recommends deferring JS.







      magento2 javascript optimization






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 20 at 9:59









      Gulshan MauryaGulshan Maurya

      265315




      265315




















          1 Answer
          1






          active

          oldest

          votes


















          0














          After working with many Magento 2 websites I came up with JS merging with minify on works better for Google's new insight.



          Also, page loads resources asynchronously which makes page rendering fast.






          share|improve this answer























          • I would go as far as saying the bundle option has a negative scoring impact

            – Dominic Xigen
            May 23 at 20:23











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "479"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f262625%2fjs-merge-vs-js-bundle-which-one-is-better-for-google-ranking%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          After working with many Magento 2 websites I came up with JS merging with minify on works better for Google's new insight.



          Also, page loads resources asynchronously which makes page rendering fast.






          share|improve this answer























          • I would go as far as saying the bundle option has a negative scoring impact

            – Dominic Xigen
            May 23 at 20:23















          0














          After working with many Magento 2 websites I came up with JS merging with minify on works better for Google's new insight.



          Also, page loads resources asynchronously which makes page rendering fast.






          share|improve this answer























          • I would go as far as saying the bundle option has a negative scoring impact

            – Dominic Xigen
            May 23 at 20:23













          0












          0








          0







          After working with many Magento 2 websites I came up with JS merging with minify on works better for Google's new insight.



          Also, page loads resources asynchronously which makes page rendering fast.






          share|improve this answer













          After working with many Magento 2 websites I came up with JS merging with minify on works better for Google's new insight.



          Also, page loads resources asynchronously which makes page rendering fast.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered May 23 at 12:33









          Gulshan MauryaGulshan Maurya

          265315




          265315












          • I would go as far as saying the bundle option has a negative scoring impact

            – Dominic Xigen
            May 23 at 20:23

















          • I would go as far as saying the bundle option has a negative scoring impact

            – Dominic Xigen
            May 23 at 20:23
















          I would go as far as saying the bundle option has a negative scoring impact

          – Dominic Xigen
          May 23 at 20:23





          I would go as far as saying the bundle option has a negative scoring impact

          – Dominic Xigen
          May 23 at 20:23

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f262625%2fjs-merge-vs-js-bundle-which-one-is-better-for-google-ranking%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

          Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?