You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
short_description: Single-page applications are client-side applications that don't route via different pages but rather combine the logic for different contents into one page.
**Single-page applications** (**SPA**) are client-side applications that don't route via different pages but rather combine the logic for different contents into one page. This was historically achieved via hashbang URI fragments (`#!`). With the introduction of the [`pushState` API](https://developer.mozilla.org/en-US/docs/Web/API/History/pushState), this state can now be properly used within the browser history, in bookmarks and sharing.
9
+
10
+
Another important point for SPA was the lack of proper [SEO](https://github.com/topics/seo) but developers and frameworks found ways around that.
0 commit comments