Live data from Hacker News

None of my projects want to be SPAs

whatisjasongoldstein.com

1–10 of 362 posts

Re: None of my projects want to be SPAs

#8
SPA and react are not the same thing.

React is about components and you can use React in something like NextJS which is not a single page app but a server rendered pages.

Also, SPA itself is getting outdated concept, now most apps are hybrid of initial bundle followed by a dynamically imported modules. Finally, MVC is a pattern for web pages, the complexity in the client side because what is the being shipped to the browsers are a client side apps with their own router, render functions, state management and APIs.

Re: None of my projects want to be SPAs

#10
post #9

Why do people insist on comparing the initial frontload of a SPA to the page load of every page in their SSR web app? Once a SPA is loaded you can send tiny crumbs of data faster than any significant SSR.

> Why do people insist on comparing the initial frontload of a SPA to the page load of every page in their SSR web app?

Because a user doesn't care if it's the initial frontload or not.

Post reply on HN