This repo is for distribution on `npm` and `bower`. The source for this module is in the [main Angular Material repo](https://github.com/angular/material). Please file issues and pull requests against that repo. ## Installing Angular Material You can install this package locally either with `npm`, `jspm`, or `bower`. ### npm ```shell # To install latest formal release npm install angular-material # To install latest release and update package.json npm install angular-material --save # To install from HEAD of master npm install http://github.com/angular/bower-material/tarball/master # To view all installed package npm list; ``` ### jspm ```shell # To install latest formal release jspm install angular-material; # To install from HEAD of master jspm install angular-material=github:angular/bower-material@master; # To view all installed package versions jspm inspect; ``` Now you can use `require('angular-material')` when installing with npm or jsmp and using Browserify or Webpack. ### bower ```shell # To get the latest stable version, use bower from the command line. bower install angular-material # To get the most recent, last committed-to-master version use: bower install angular-material#master # To save the bower settings for future use: bower install angular-material --save # Later, you can use easily update with: bower update ``` > Please note that Angular Material requires **Angular 1.3.x** or higher. ## Using the Angular Material Library Now that you have installed the Angular libraries, simply include the scripts and stylesheet in your main HTML file, in the order shown in the example below. Note that npm will install the files under `/node_modules/angular-material/` and bower will install them under `/bower_components/angular-material/`. ### npm ```html