#javascript-optimization

[ follow ]
Sitepoint
1 month ago
Web development

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. [ more ]
tonsky.me
2 months ago
Web development

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. [ more ]
Daniel Lemire's blog
5 months ago
JavaScript

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. [ more ]
Marvinh
1 year ago
JavaScript

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. [ more ]
[ Load more ]