2016-01-26 21:12:48 +03:00
---
layout: docs
title: Download
group: getting-started
---
2016-01-29 19:30:09 +03:00
{% callout warning %}
## **Heads up! Use the repository branch!**
2016-08-01 15:17:55 +03:00
2016-01-29 19:30:09 +03:00
With the pace of current changes, any published package would be out of date almost every day.
For the current time, please use the `v4-dev` branch for **all package managers including bower and npm** by pointing to `FezVrasta/bootstrap-material-design#v4-dev` .
{% endcallout %}
2016-08-01 15:17:55 +03:00
**Bootstrap Material Design v{{ site.data.version}}** is available for download in several ways, including some of your favorite package managers. Choose from the options below to snag just what you need.
2016-01-26 21:12:48 +03:00
< div class = "row m-t-md" >
< div class = "col-sm-6" >
{% markdown %}
### Compiled
Download just the compiled and minified CSS and JavaScript. Doesn't include any documentation or original source files.
{% comment %}
2016-08-02 20:44:39 +03:00
< a href = "{{ site.data.download.dist }}" class = "btn btn-primary" onclick = "ga('send', 'event', 'Getting started', 'Download', 'Download compiled');" > Download Bootstrap Material Design< / a >
2016-01-26 21:12:48 +03:00
{% endcomment %}
< span class = "text-muted" > Coming soon!< / span >
{% endmarkdown %}
< / div >
< div class = "col-sm-6" >
{% markdown %}
### Source files
Download everything: source Sass, JavaScript, and documentation files. **Requires a Sass compiler, [Autoprefixer](https://github.com/postcss/autoprefixer), and [some setup]({{ site.baseurl }}/getting-started/build-tools/#tooling-setup).**
2016-08-02 20:44:39 +03:00
< a href = "{{ site.data.download.source }}" class = "btn btn-primary" onclick = "ga('send', 'event', 'Getting started', 'Download', 'Download source');" > Download source< / a >
2016-01-26 21:12:48 +03:00
{% endmarkdown %}
< / div >
< / div >
## Package managers
2016-08-01 15:17:55 +03:00
Pull in Bootstrap Material Design's **source files** into nearly any project with some of the most popular package managers. No matter the package manager, Bootstrap Material Design will **require a Sass compiler and [Autoprefixer](https://github.com/postcss/autoprefixer)** for a setup that matches our official compiled versions.
2016-01-26 21:12:48 +03:00
### npm
2016-08-01 15:17:55 +03:00
Install Bootstrap Material Design in your Node powered apps with [the npm package ](https://www.npmjs.org/package/bootstrap ):
2016-01-26 21:12:48 +03:00
{% highlight bash %}$ npm install bootstrap-material-design@{{ site.data.version }}{% endhighlight %}
2016-08-01 15:17:55 +03:00
`require('bootstrap-material-design')` will load all of Bootstrap Material Design's jQuery plugins onto the jQuery object.
2016-01-26 21:12:48 +03:00
2016-08-01 15:17:55 +03:00
Bootstrap Material Design's `package.json` contains some additional metadata under the following keys:
2016-01-26 21:12:48 +03:00
2016-08-01 15:17:55 +03:00
- `sass` - path to Bootstrap Material Design's main [Sass ](http://sass-lang.com/ ) source file
- `style` - path to Bootstrap Material Design's non-minified CSS that's been precompiled using the default settings (no customization)
2016-01-26 21:12:48 +03:00
### Bower
2016-08-01 15:17:55 +03:00
Install and manage Bootstrap Material Design's Sass and JavaScript using [Bower ](http://bower.io ).
2016-01-26 21:12:48 +03:00
{% highlight bash %}$ bower install bootstrap-material-design#v{{ site.data.version }}{% endhighlight %}
### Meteor
{% highlight bash %}
$ meteor add FezVrasta/bootstrap-material-design@={{ site.data.version }}
{% endhighlight %}
### Composer
2016-08-01 15:17:55 +03:00
You can also install and manage Bootstrap Material Design's Sass and JavaScript using [Composer ](https://getcomposer.org ):
2016-01-26 21:12:48 +03:00
{% highlight bash %}
$ composer require FezVrasta/bootstrap-material-design
{% endhighlight %}