@defer is the cheapest performance win Angular ever shipped
For years, shrinking an Angular bundle meant route-level lazy loading and, below that, ceremony:...
Tag archive
For years, shrinking an Angular bundle meant route-level lazy loading and, below that, ceremony:...
Angular v18 continues to introduce powerful new features, some aimed at simplifying development...
One of the main goals in modern Angular apps is reducing hydration costs and improving user...
Close files. Unlock mutexes. Flush buffers. Handle panics. One keyword. Five killer patterns you’ll...

Deferrable views, also known as @defer blocks, reduce the initial bundle size of your application by...

In Angular 19, the @defer directive is a game-changing feature designed to optimize performance by...
When working with asynchronous operations in JavaScript and TypeScript, Promises are the heart and...
Ao trabalhar com Go, você pode ter se deparado com a decisão de usar um receiver com ou sem um ponteiro em métodos. Vamos explorar essa escolha fundamental na linguagem Go usando um exemplo simples de código. E no final, ainda vou compartilhar um detalhe bônus sobre o uso do defer.
In the world of web development, performance is key. One of the ways to improve the performance of...
![Loading JS scripts [A]synchronously](https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftv32ztvrdcfsybrlfpj8.jpg)
The image above shows the regular flow when we place a <script> in a HTML document. The whole...
The defer statement is going mainstream. Go has it's own special defer which only fires on function e...

Explication of the different modes of javascript execution.