AI-powered
podcast player
Listen to all your favourite podcasts with AI-powered features
John: Welcome to Iteration, a podcast about programming, development, and design.
https://macwright.com/2020/05/10/spa-fatigue.html
From the article
The more techincal one:
https://developer.mozilla.org/en-US/docs/Glossary/SPA
An SPA (Single-page application) is a web app implementation that loads only a single web document, and then updates the body content of that single document via JavaScript APIs such as [XMLHttpRequest]() and Fetch when different content is to be shown.
This therefore allows users to use websites without loading whole new pages from the server, which can result in performance gains and a more dynamic experience, with some tradeoff disadvantages such as SEO, more effort required to maintain state, implement navigation, and do meaningful performance monitoring.
Increased complexity — Development and deployment
SEO + Speed — Have to do "Server Side Rendering"
Maintainability? Stability?