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` or with `bower`. ### npm ```shell npm install angular-material ``` Note that this package is not in CommonJS format, so doing `require('angular-material')` will return `undefined`. If you're using [Browserify](https://github.com/substack/node-browserify), you can use [exposify](https://github.com/thlorenz/exposify) to have `require('angular-material')` return the `angular-material` global. ### 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