Skip to main content

New answers tagged

6 votes
Accepted

Is a SPA still a SPA if SSR is used?

The heart and soul of a single page application is just that: a single page; one full page load. It means avoiding that old, clunky GET-POST-Redirect architecture where every user action redraws the ...
Greg Burghardt's user avatar
2 votes

Is a SPA still a SPA if SSR is used?

Well, sort of. After all, nothing in the definition of an SPA mandates the client-side rendering. And if it would, it wouldn't make too much sense. Imagine a simplistic application that displays a ...
Arseni Mourzenko's user avatar
1 vote

Should I instantiate controllers in route modules or use static methods?

Neither. Embrace the functional and modular paradigm instead. All of the Node + Express examples I've seen use the router as a simple series of callbacks, essentially. I haven't seen any object-...
Greg Burghardt's user avatar

Top 50 recent answers are included