Created
July 24, 2014 08:53
-
-
Save CallumVass/5099ac6f89058e11fe41 to your computer and use it in GitHub Desktop.
Typical Angular Project Structure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|-- app.js | |
|-- common/ | |
| |-- common.js | |
| |-- directives/ | |
| | |-- someCommonDirective.js | |
| | |-- someOtherCommonDirective.js | |
|-- customers/ | |
| |-- customerList.js | |
| |-- customerList.html | |
| |-- customerCreate.js | |
| |-- customerCreate.html | |
| |-- customerService.js | |
| |-- ... | |
|-- sales/ | |
| |-- ... | |
|-- purchasing/ | |
| |-- ... | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment