NashTech Insights

lazy

Posts by categories

Posts by tags

Lazy loading for reducing initial bundle size in Angular

Introduction Angular is a powerful front-end framework that allows developers to build feature-rich and complex web applications. As the application grows, the size of the initial bundle can increase significantly, affecting the application’s loading time. To address this issue, Angular offers lazy loading, a powerful technique that helps reduce the initial bundle size by loading …

Lazy loading for reducing initial bundle size in Angular Read More »

Code Splitting and Lazy Loading with Modules in JavaScript

Introduction: Code splitting and lazy loading are techniques used in JavaScript applications to improve performance by optimizing the loading and execution of code. These techniques enable developers to split their application code into smaller, manageable chunks and load them on demand when needed. In this blog, we will explore code splitting and lazy loading with …

Code Splitting and Lazy Loading with Modules in JavaScript Read More »