Ankit Babberblogababber.hashnode.dev·Feb 18, 2025How I Improved My Shell Load Time With a Lazy LoadOriginally published on https://www.ankitbabber.com If you've used multiple tools, languages, build environments, etc.. as a CLI (command line utility), then you've probably experienced slow load times for your shell environment at some point. A sim...zsh
Code With Shashikashashikadev.hashnode.dev·Feb 15, 2025Understanding the Difference: Laravel Lazy Loading vs Eager LoadingLazy and Eager loading are different strategies for loading data from the database. They are used to optimize the performance of the Laravel application. Lazy Loading Lazy Loading is a technique in which related data is loaded from the database only ...Laravel
Abhishek Sadhwaniabhisheksadhwani.hashnode.dev·Feb 2, 2025Lazy Loading & Code Splitting: The Key to Faster React AppsIntroduction As React applications grow in size, number of components and third party libraries increase, loading all JavaScript at once can slow down performance, leading to increased load times and a poor user experience. Code splitting and lazy lo...1 likeReact
Strngestrngeblogs.hashnode.dev·Jan 25, 2025Implementing Lazy Loading in Next.js: Optimizing Images, Components, and RoutesAs developers, we strive to create web applications that are fast, responsive, and optimized for the best user experience. One effective technique to achieve this is lazy loading, a method that loads content only when it’s needed, instead of loading ...Next.js
Chetan Mittalblog.railsforgedev.com·Jan 18, 2025Turbo Frames in Rails: A Complete Guide to Lazy-Loaded ComponentsWhat is Lazy Loading with Turbo Frames? Modern web applications need to be both performant and maintainable. In Rails applications, we often face the challenge of loading multiple independent widgets or components on a single page. While traditional ...viewcomponent
syncfusionsyncfusion-blogs.hashnode.dev·Jan 9, 2025Boost Angular Performance: Lazy Loading GuideTL; DR: Lazy loading in Angular improves app performance by loading modules only when needed. This reduces initial load time and improves user experience. Angular is a globally used framework for building extremely complex and high-performing web app...Angular
Strngestrngeblogs.hashnode.dev·Jan 4, 2025How to Optimize Images in Next.jsImages play a critical role in web performance and user experience. Next.js provides a built-in solution for image optimization with the next/image component. This guide explores how to use next/image effectively to achieve faster load times and impr...Next.js
Arka Infotecharkainfotech.hashnode.dev·Jan 2, 2025Next.js Image Optimization: A Complete GuideIntroduction Images are often the largest assets on a website, impacting both loading times and SEO. As the web becomes more performance-focused, optimizing images has never been more important. With Next.js, developers can easily optimize images usi...Next.js
Aadesh Gavhaneaadeshhh.hashnode.dev·Dec 21, 2024How Instagram Reels Never End!Have you ever found yourself endlessly scrolling through Instagram Reels, wondering how the feed seems infinite? How does Instagram manage to keep the reels coming, with no apparent end? Let me explain the technology behind this addictive feature. Wh...instagram
Shubhamlazyloadingreact.hashnode.dev·Dec 5, 2024Lazy Loading in React: Optimizing App PerformanceImagine you have a large website with many pages, but you don’t want everything to load at once when the user visits your website. It would be slow and frustrating. Lazy loading helps by only loading parts of the website as needed, instead of all at ...lazy loading