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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

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

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form