Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 1.37 KB

index.md

File metadata and controls

31 lines (25 loc) · 1.37 KB
title layout comments
Home
page-with-nav
true

The guides on this site explain the architecture of what has proved to be a robust, maintainable, and ultimately successful large-scale AngularJS web application.

The goals of this architecture (as with any good architecture) are to:

  1. Increase the speed of the development cycle and each iteration
  2. Prevent bugs/regressions while adding new features
  3. Be able to reuse as many things as possible and remove duplication
  4. Be able to write robust tests that truly catch any errors/problems that might arise

The design employs a clear, layered architecture to allow for reuse of services, components, and data models, and allow a team of developers to add features by reusing any existing infrastructure and components when needed.

Hop right in: [High Level Overview]({{ site.baseurl }}/architecture/high-level-overview)


Note: This guide is in the process of being updated with all examples to match the Angular 2.x [Tour of Heroes](https://angular.io/docs/ts/latest/tutorial/) tutorial, which will hopefully assist in drawing parallels between the two versions of Angular. Even though the guides on this site are based on Angular 1.x, essentially all of the same high-level concepts are now taught for Angular 2.x in the [Angular 2.x Developer Guide](https://angular.io/docs/ts/latest/guide/).