Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Astro for Angular astronauts - CSR, SSR, SSG, A...

Marcell Kiss
May 15, 2024
26

Astro for Angular astronauts - CSR, SSR, SSG, Astro andΒ Angular

This talk introduces Astro, explaining how it works and why its approach means a huge performance boost. You will learn how to utilize Angular using Astro and get introduced to the built-in Angular SSG support as well.

Marcell Kiss

May 15, 2024
Tweet

Transcript

  1. Intro Marcell Kiss, MSc Contractor #EnterpriseArchitecture Angular Hungary πŸ‡­πŸ‡Ί Part-time

    trainer #AngularArchitects marcell.tech @marcelltech @marcellkiss @marcellkiss πŸ‡©πŸ‡ͺ
  2. Overview βœ… Web Rendering βœ… Intro to Astro βœ… Angular

    in Astro βœ… Angular’s built-in SSG
  3. CSR - Client-Side Rendering Server Browser somesite.com index.html [empty shell]

    Include main.js main.js Request: …/api/info {info: …} πŸ‘€ βš™ @marcelltech
  4. Server Browser somesite.com Include main.js main.js πŸ‘€ SSR - Server-Side

    Rendering index.html [with content!] βš™ @marcelltech βš™
  5. SSG - Static Site Generation Server Browser somesite.com index.html [with

    content!] Include main.js main.js πŸ‘€ βš™ @marcelltech
  6. Performance Summary ❌ CSR is resource-heavy for bots ❌ SSR

    is resource-heavy for us βœ… SSG has the lowest latency @marcelltech
  7. SSG - Build & Deploy Your Astro App (MPA) Index

    .html /home /impressum /user/:id Impressum .html ? @marcelltech
  8. CSR - Build & Deploy Your Angular App (SPA) Index.html

    /home /impressum /user/:id @marcelltech
  9. Application Builder Your Angular App (SPA) @marcelltech CSR SSR SSG

    πŸ›  Application Builder πŸ“– Docs: https://angular.dev/tools/cli/esbuild https://angular.dev/guide/prerendering#
  10. Resources @marcelltech [Article] Angular Islands in Astro https://dev.to/brandontroberts/bringing-angular-components-to-astro-islands-52jp [Article] Astro

    + Angular https://medium.com/ngconf/astro-angular-abe926dac097 [Docs] Angular new build system https://angular.io/guide/esbuild [Docs] Angular Pre-rendering https://angular.dev/guide/prerendering# [Docs] Astro integrations https://astro.build/integrations/ [Docs] Astro MDX Docs https://docs.astro.build/en/guides/integrations-guide/mdx/ [OSS] GitHub Repo https://github.com/marcellkiss/angular-astro-example