This is very frustrating, Im using a mean.js yeoman generated application and can\'t get to seem to get angular-material up and running. I read another stackoverflow questio
Angular material, ngMaterial, has dependency on ngAria and ngAnimate as well. You would need to load them.
angular.module('ngMaterial', ["ng","ngAnimate","ngAria", ...other material sub modules
You could download it from angular aria and angular animate. Use the correct version of these based on your angular version.
Also just adding the scripts in the project is not enough you need to load them in your html as well. Also load them before ng-material script.