git clone https://github.com/operationcode/mean-dash.git && cd mean-dash
npm install
npm start
Visit http://localhost:5000 to see the app!
Official AngularJS website is good place to start, but it lacks of best practices and not provides you base concepts, which could simplify your life. There is some links that can help you better understand how to write maintainable applications using AngularJS.
- Angular Styleguide - This is basically angular best practices. There are some differences for ES2015 but the explanation of these practtices remains the same.
- Optionated Angular Styleguide - this is an extended version of angular styleguide, which covers additional information relevant to dev teams.
- Code Organization in Large AngularJS and JavaScript Applications - This article explains a directory structure, proposed in angular styleguide with more details and use cases.
- The Top 5 Mistakes AngularJS Developers Make - This is a great series of posts describing in depth the common mistakes and how to not make them.
- AngularJS: The Bad Parts - To not fall into a trap, developers always should know the problems of tools they are using. With this knowledge in mind, you will write more maintainable applications.
- You don't always need AngularJS DI in directives - This articles will help you to make more reusable UI components.
- Exploring the Angular 1.5
.component()
method - A Guide To Transclusion in AngularJS