over 9 years ago
The directory structure is also an important part for any framework and you can manage and maintain properly. May be it is possible you have searched tutorials and examples for Angular directory structure.
Directory structure always helps you to make agnostic server side code and to manage your client side code.
- root-app-folder
- index.html
- scripts
- controllers
- main.js
- ...
- directives
- myDirective.js
- ...
- filters
- myFilter.js
- ...
- services
- myService.js
- ...
- vendor
- angular.js
- angular.min.js
- es5-shim.min.js
- json3.min.js
- app.js
- styles
- ...
- views
- main.html
- ...
root-app-folder index.html scripts controllers main.js ... directives myDirective.js ... filters myFilter.js ... services myService.js ... vendor angular.js angular.min.js es5-shim.min.js json3.min.js app.js styles ... views main.html ...
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)