Remix.run Logo
bbg2401 an hour ago

I’m not sure I follow.

SPA’s tend to require more network round trips, sometimes significantly more based on the architecture.

Izkata an hour ago | parent | next [-]

But a lot of the time they can happen in the background where the user doesn't see them, or on a part of the page the user isn't currently interacting with, preventing it from being a stop-the-world interruption.

ko27 an hour ago | parent | prev [-]

It’s in the name: an MPA requires a page roundtrip for every navigation, while SPA requires a single page roundtrip. Any subsequent requests are part of the application itself and can be handled without disrupting UX.