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;
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
add a comment |
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
add a comment |
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
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
magento2 javascript optimization
asked Feb 20 at 9:59
Gulshan MauryaGulshan Maurya
265315
265315
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
I would go as far as saying the bundle option has a negative scoring impact
– Dominic Xigen
May 23 at 20:23
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
I would go as far as saying the bundle option has a negative scoring impact
– Dominic Xigen
May 23 at 20:23
add a comment |
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.
I would go as far as saying the bundle option has a negative scoring impact
– Dominic Xigen
May 23 at 20:23
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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