Bundling JavaScript for Performance: Best Practices

Publikováno: 24.1.2020

Performance advice from David Calhoun on how many scripts to load on a page for best performance:

[...] some of your vendor dependencies probably change slower than others. react and react-dom probably change the slowest, and their versions are always paired together, so they both form a logical chunk that can be kept separate from other faster-changing vendor code:

<!-- index.html --<script src="vendor.react.[hash].min.js"</script<script src="vendor.others.[hash].min.js"</script<script src="index.[hash].min.js"</script

Funny how times haven't changed that much! Me, in … Read article

The post Bundling JavaScript for Performance: Best Practices appeared first on CSS-Tricks.

Celý článek

Performance advice from David Calhoun on how many scripts to load on a page for best performance:

[...] some of your vendor dependencies probably change slower than others. react and react-dom probably change the slowest, and their versions are always paired together, so they both form a logical chunk that can be kept separate from other faster-changing vendor code:

<!-- index.html -->
<script src="vendor.react.[hash].min.js"></script>
<script src="vendor.others.[hash].min.js"></script>
<script src="index.[hash].min.js"></script>

Funny how times haven't changed that much! Me, in 2012, talking about how many CSS files need to be loaded on any given page: One, Two, or Three. I split it into global, section-specific, and-page-specific so it was less about third-party code, although that could certainly apply, too.

Direct Link to ArticlePermalink

The post Bundling JavaScript for Performance: Best Practices appeared first on CSS-Tricks.

Nahoru
Tento web používá k poskytování služeb a analýze návštěvnosti soubory cookie. Používáním tohoto webu s tímto souhlasíte. Další informace