2015-11-26 01:01:18 +03:00
---
layout: docs
title: Download
group: getting-started
---
2015-12-03 00:02:51 +03:00
**Material Design for Bootstrap 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.
2015-11-26 01:01:18 +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 %}
2015-12-03 00:02:51 +03:00
< a href = "{{ site.data.download.dist }}" class = "btn btn-bs btn-outline" onclick = "ga('send', 'event', 'Getting started', 'Download', 'Download compiled');" > Download Material Design for Bootstrap< / a >
2015-11-26 01:01:18 +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).**
2015-12-03 00:02:51 +03:00
< a href = "{{ site.data.download.source }}" class = "btn btn-bs btn-outline" onclick = "ga('send', 'event', 'Getting started', 'Download', 'Download source');" > Download source< / a >
2015-11-26 01:01:18 +03:00
{% endmarkdown %}
< / div >
< / div >
## Package managers
Pull in Material Design for Bootstrap's **source files** into nearly any project with some of the most popular package managers. No matter the package manager, Material Design for Bootstrap will **require a Sass compiler and [Autoprefixer](https://github.com/postcss/autoprefixer)** for a setup that matches our official compiled versions.
{% callout warning %}
**Heads up!** Not all package managers have the v4 alpha published yet, but we should have them up shortly!
{% endcallout %}
### npm
Install Material Design for Bootstrap in your Node powered apps with [the npm package ](https://www.npmjs.org/package/bootstrap ):
2016-01-26 18:07:53 +03:00
{% highlight bash %}$ npm install bootstrap-material-design@{{ site.data.version }}{% endhighlight %}
2015-11-26 01:01:18 +03:00
2016-01-26 18:07:53 +03:00
`require('bootstrap-material-design')` will load all of Material Design for Bootstrap's jQuery plugins onto the jQuery object.
2015-11-26 01:01:18 +03:00
Material Design for Material Design for Bootstrap's `package.json` contains some additional metadata under the following keys:
- `sass` - path to Material Design for Bootstrap's main [Sass ](http://sass-lang.com/ ) source file
- `style` - path to Material Design for Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization)
2016-01-25 02:30:49 +03:00
### Bower
Install and manage Material Design for Bootstrap's Sass and JavaScript using [Bower ](http://bower.io ).
{% highlight bash %}$ bower install bootstrap-material-design#v{{ site.data.version }}{% endhighlight %}
2015-11-26 01:01:18 +03:00
### Meteor
{% highlight bash %}
2015-12-03 00:02:51 +03:00
$ meteor add FezVrasta/bootstrap-material-design@={{ site.data.version }}
2015-11-26 01:01:18 +03:00
{% endhighlight %}
### Composer
You can also install and manage Material Design for Bootstrap's Sass and JavaScript using [Composer ](https://getcomposer.org ):
{% highlight bash %}
$ composer require FezVrasta/bootstrap-material-design
{% endhighlight %}