AngularJS boilerplate with angularMaterial + html5 boilerplate
Basic structure
.
├── bower_components
│ ├── angular-animate
│ ├── angular-aria
│ ├── angular-material
│ ├── angular-route
│ ├── angular
│ └── hammerjs
├── css
│ ├── main.css
│ └── normalize.css
├── doc
├── img
├── js
│ ├── plugins.js
│ ├── main.js
│ ├── routes.js
│ ├── services.js
│ ├── controllers.js
│ ├── filters.js
│ └── directives.js
├── .htaccess
├── 404.html
├── apple-touch-icon-precomposed.png
├── index.html
├── humans.txt
├── robots.txt
├── crossdomain.xml
└── favicon.ico
AngularJS lets you write client-side web applications as if you had a smarter browser. It lets you use good old HTML (or HAML, Jade and friends!) as your template language and lets you extend HTML’s syntax to express your application’s components clearly and succinctly. It automatically synchronizes data from your UI (view) with your JavaScript objects (model) through 2-way data binding. To help you structure your application better and make it easy to test, AngularJS teaches the browser how to do dependency injection and inversion of control.
Oh yeah and it helps with server-side communication, taming async callbacks with promises and deferreds. It also makes client-side navigation and deeplinking with hashbang urls or HTML5 pushState a piece of cake. The best of all: it makes development fun!
Web site: http://angularjs.org Tutorial: http://docs.angularjs.org/tutorial API Docs: http://docs.angularjs.org/api Developer Guide: http://docs.angularjs.org/guide Contribution guidelines: CONTRIBUTING.md Dashboard: http://dashboard.angularjs.org
HTML5 Boilerplate is a professional front-end template for building fast, robust, and adaptable web apps or sites.
This project is the product of many years of iterative development and combined community knowledge. It does not impose a specific development philosophy or framework, so you're free to architect your code in the way that you want.
Source: https://github.com/h5bp/html5-boilerplate Homepage: http://html5boilerplate.com Twitter: @h5bp
Material design for Angular https://material.angularjs.org/