#javascript-optimization

[ follow ]

Fixing your website's JavaScript performance | MDN Blog

Efficient JavaScript usage is critical for web performance, addressing long tasks, large bundle sizes, and hydration issues can significantly enhance responsiveness.

7 Easy Ways to Make a Magento 2 Website Faster - SitePoint

Utilize Varnish caching, implement a cache warmer, move JavaScript to bottom of the page to enhance Magento 2 site speed.

Speeding up the JavaScript ecosystem - one library at a time

JavaScript tools can be optimized for speed without rewriting them in other languages like Rust or Go.
Performance issues in popular libraries can often be attributed to factors like unnecessary type conversions or inefficient functions.

JavaScript Bloat in 2024

JavaScript is a universal metric for evaluating the complexity of interactions on a webpage.
Front-end development involves assessing browser workload by evaluating code parsing and execution.

Fast Buffer-to-String conversion in JavaScript with a Lookup Table

Converting raw bytes into strings in JavaScript can be a bottleneck, so recognizing known strings can be an optimization.
The undici library in Node.js addresses this issue by using a trie data structure implemented with JavaScript objects.
[ Load more ]