sethu
sethu

Reputation: 229

Is angular 2 only for spa applications?

Could not find much information on whether we can use angular 2 for non SPA applications. For example any major health insurance website out there. Most of the example I am reading online are talking in terms of SPAs. One reason being I am just starting to learn Angular 2 and could not yet draw conclusions on Angular 2's flexibility. Can you enlighten please?

Upvotes: 2

Views: 958

Answers (1)

Pierre Urban
Pierre Urban

Reputation: 149

You can use Angular 2 for building any type of application, not only single page application.

Angular 2's philosophy embraces the composite design pattern, so you could design every section of your site with components.

And of course you can link all these components together in a SPA if that's what you want.

Upvotes: 1

Related Questions