2014-07-10 20:54:06 -04:00
---
2015-08-15 01:45:55 -04:00
layout: docs
2014-07-10 20:54:06 -04:00
title: Download
2015-08-05 20:47:45 -04:00
group: getting-started
2014-07-10 20:54:06 -04:00
---
2015-08-10 01:49:03 -04:00
**Bootstrap v{{ site.current_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.
2014-07-10 20:54:06 -04:00
2015-08-10 01:49:03 -04: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.
2015-05-29 04:58:52 -04:00
2015-08-19 02:51:59 -04:00
{% comment %}
2015-08-10 01:49:03 -04:00
< a href = "{{ site.download.dist }}" class = "btn btn-bs btn-outline" onclick = "ga('send', 'event', 'Getting started', 'Download', 'Download compiled');" > Download Bootstrap< / a >
2015-08-19 02:51:59 -04:00
{% endcomment %}
< span class = "text-muted" > Coming soon!< / span >
2015-08-10 01:49:03 -04:00
{% endmarkdown %}
2015-06-09 19:09:33 -04:00
< / div >
2015-08-10 01:49:03 -04:00
< div class = "col-sm-6" >
{% markdown %}
### Source files
2015-08-20 20:15:17 -04:00
Download everything: source Sass, JavaScript, and documentation files. **Requires a Sass compiler, [Autoprefixer](https://github.com/postcss/autoprefixer), and some setup.**
2015-08-10 01:49:03 -04:00
< a href = "{{ site.download.source }}" class = "btn btn-bs btn-outline" onclick = "ga('send', 'event', 'Getting started', 'Download', 'Download source');" > Download source< / a >
{% endmarkdown %}
2015-06-09 19:09:33 -04:00
< / div >
< / div >
2014-12-10 17:12:20 -05:00
2015-06-09 19:09:33 -04:00
## Package managers
2015-08-10 01:49:03 -04:00
Pull in Bootstrap's **source files** into nearly any project with some of the most popular package managers. No matter the package manager, Bootstrap will **require a Sass compiler and [Autoprefixer](https://github.com/postcss/autoprefixer)** for a setup that matches our official compiled versions.
2015-08-19 02:51:59 -04:00
{% callout warning %}
**Heads up!** Not all package managers have the v4 alpha published yet, but we should have them up shortly!
{% endcallout %}
2015-06-09 19:09:33 -04:00
### Bower
2014-07-10 20:54:06 -04:00
2015-08-10 01:49:03 -04:00
Install and manage Bootstrap's Sass and JavaScript using [Bower ](http://bower.io ).
2014-07-10 20:54:06 -04:00
{% highlight bash %}$ bower install bootstrap{% endhighlight %}
2015-06-09 19:09:33 -04:00
### npm
2014-07-10 20:54:06 -04:00
2015-08-10 01:49:03 -04:00
Install Bootstrap in your Node powered apps with [the npm package ](https://www.npmjs.org/package/bootstrap ):
2014-07-10 20:54:06 -04:00
{% highlight bash %}$ npm install bootstrap{% endhighlight %}
2015-01-03 23:08:58 -05:00
2015-01-19 17:48:12 -05:00
`require('bootstrap')` will load all of Bootstrap's jQuery plugins onto the jQuery object. The `bootstrap` module itself does not export anything. You can manually load Bootstrap's jQuery plugins individually by loading the `/js/*.js` files under the package's top-level directory.
2015-01-03 23:08:58 -05:00
2015-01-19 17:48:12 -05:00
Bootstrap's `package.json` contains some additional metadata under the following keys:
- `less` - path to Bootstrap's main [Less ](http://lesscss.org ) source file
- `style` - path to Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization)
2015-06-09 19:09:33 -04:00
### Meteor
2015-03-29 03:08:54 -04:00
{% highlight bash %}
$ meteor add twbs:bootstrap
{% endhighlight %}
2015-06-09 19:09:33 -04:00
### Composer
2015-03-29 03:08:54 -04:00
2015-08-10 01:49:03 -04:00
You can also install and manage Bootstrap's Sass and JavaScript using [Composer ](https://getcomposer.org ):
2015-06-19 02:56:43 -04:00
2015-03-29 03:08:54 -04:00
{% highlight bash %}
$ composer require twbs/bootstrap
{% endhighlight %}
2015-01-19 17:48:12 -05:00
2015-08-10 01:49:03 -04:00
## Custom builds
Need only a part of Bootstrap's CSS or JS? Use one of the custom builds to snag just what you need.
< div class = "row" >
< div class = "col-sm-4" >
< h3 > Reboot< / h3 >
< p > Includes variables/mixins, Normalize, and Reboot. No JavaScript.< / p >
< a class = "btn btn-bs btn-outline" href = "#" > Download< / a >
< / div >
< div class = "col-sm-4" >
< h3 > Grid only< / h3 >
< p > Includes variables/mixins and our grid system. No JavaScript.< / p >
< a class = "btn btn-bs btn-outline" href = "#" > Download< / a >
< / div >
< div class = "col-sm-4" >
< h3 > Flexbox< / h3 >
< p > All of Bootstrap with flexbox enabled and < strong > lower browser support< / strong > .< / p >
< a class = "btn btn-bs btn-outline" href = "#" > Download< / a >
< / div >
< / div >