-
Notifications
You must be signed in to change notification settings - Fork 0
Module Structure
Steven Nance edited this page Apr 21, 2015
·
1 revision
This application contains two types of modules based on the functionality they contain. Modules fall into one of two categories:
state modules: which contain logic relating to the application state (in most cases a one to one relation with the current URL).
component modules: functionality that is either reusable or is not directly tied to a state. Most of the logic for the application will be contained within a state module.
Both the state and component modules conform to the "Fractal Design Pattern" outline in the angular internal structure proposal.
TODO
TODO