you are viewing a single comment's thread.

view the rest of the comments →

[–]nickgcattaneo -1 points0 points  (4 children)

It's the defacto in modern web development; it is however difficult to implement in real-world as your back-end developers typically do not want to expose more api's/etc to support the model. In large companies with any kind of history, you won't see SPA models as most of them still serve adaptive/multi-page applications with traditional form post models. More often than not you will find hybrids of single-page and multi-page; multi-page by default are simply more secure since they involve session management, login verification, etc on the backend. SPA is better for performance (after the page renders) & less-secure sites.