As I embark on a new project from the ground up, my main focus is creating a responsive website optimized for mobile devices. In order to achieve this goal, I am seeking information about Angular:
How does Angular manage its resources and dependencies? Are the files loaded into memory each time or do they persist in memory throughout web browsing? Additionally, would using RequireJS or AngularAMD be a viable solution for optimizing performance?
I recently faced a scenario where I had a page with tabbed views. In such cases, is it more efficient to create separate views for each tab, or should I follow the traditional approach of having all views on the same page and load them simultaneously? (I came across references to parallel-state for handling this situation)