syncfusionsyncfusion-blogs.hashnode.dev·Nov 26, 2024Zoneless Change Detection in Angular 18: Boost PerformanceTL;DR: Angular 18 introduced zoneless change detection, an experimental feature to replace Zone.js. It improves performance by manually controlling when change detection occurs, reducing unnecessary cycles, and enhancing app efficiency. Change detect...zonejs
Rajesh Polaratirajeshpolarati.hashnode.dev·Aug 8, 2024Getting Started with Webpack: A Beginner’s Guide - Part 2In the previous blog, we have seen how webpack has evolved, webpack core concepts, and installation & setup. If you didn't read the previous article, read it before reading this article. Here is the link for Part 1In this blog, we will look into some...31 readsJavaScript
Keyur Chaudharikeyurchaudhari.hashnode.dev·Sep 14, 2023Understanding JavaScript's async and defer attributesIn this blog post, we explore the async and defer attributes in JavaScript, used with script tags to efficiently load external scripts onto a web page. We discuss three scenarios: using a script tag normally, with the async attribute, and with the de...JavaScript
Yash Rawatwhoopyashrawat.hashnode.dev·Jul 30, 2023CSS Animation to use and avoid🚀When it comes to choosing CSS animations for web performance, it's essential to be selective and mindful of their impact on user experience and page load times. Here are some types of CSS animations to use and avoid to optimize web performance: CSS A...CSS
Pratik Mdevelopnsolve.com·Jun 13, 2023Improve Web PerformanceWeb developers need to prioritize initial page load performance to avoid losing visitors due to short attention spans and the expectation of instant gratification. Understanding metrics like Largest Contentful Paint (LCP), First Input Delay (FID), an...18 likes·5.4K readsSoftware Engineering 101webdev
Preeti Roshanpreetiroshan.hashnode.dev·Apr 10, 2023Async vs Defer - Network Optimisation for Web AppsThere are mainly 4 ways in which we can add scripts to our HTML webpage. Let's discuss these in detail in the following blog. Along with these, we'll also be having a quick look over handling scripts pointing to JS modules. Let's begin! 1. In the he...156 readsJavaScript