2014-07-10 17:54:06 -07:00
---
2015-08-14 22:45:55 -07:00
layout: docs
2014-07-10 17:54:06 -07:00
title: Download
2016-10-02 18:19:47 -07:00
description: Download Bootstrap's compiled CSS and JavaScript, source code, or include it with your favorite package manager.
2015-08-05 17:47:45 -07:00
group: getting-started
2014-07-10 17:54:06 -07:00
---
2015-08-09 22:49:03 -07: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 17:54:06 -07:00
2015-08-09 22:49:03 -07:00
### Source files
2016-02-07 01:09:01 -08:00
Download everything: source Sass, JavaScript, and documentation files. **Requires a Sass compiler, [Autoprefixer](https://github.com/postcss/autoprefixer), [postcss-flexbugs-fixes](https://github.com/luisrudge/postcss-flexbugs-fixes), and [some setup]({{ site.baseurl }}/getting-started/build-tools/#tooling-setup).**
2015-08-09 22:49:03 -07:00
< a href = "{{ site.download.source }}" class = "btn btn-bs btn-outline" onclick = "ga('send', 'event', 'Getting started', 'Download', 'Download source');" > Download source< / a >
2014-12-10 14:12:20 -08:00
2015-06-09 16:09:33 -07:00
## Package managers
2016-02-07 01:09:01 -08: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, [Autoprefixer](https://github.com/postcss/autoprefixer), and [postcss-flexbugs-fixes](https://github.com/luisrudge/postcss-flexbugs-fixes)** for a setup that matches our official compiled versions.
2015-08-09 22:49:03 -07:00
2015-08-18 23:51:59 -07: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 16:09:33 -07:00
### npm
2014-07-10 17:54:06 -07:00
2015-08-09 22:49:03 -07:00
Install Bootstrap in your Node powered apps with [the npm package ](https://www.npmjs.org/package/bootstrap ):
2014-07-10 17:54:06 -07:00
2015-12-17 13:29:58 -08:00
{% highlight bash %}
2016-10-06 12:02:52 +11:00
npm install bootstrap@{{ site.current_version }}
2015-12-17 13:29:58 -08:00
{% endhighlight %}
2015-01-03 20:08:58 -08:00
2015-01-19 14:48:12 -08: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 20:08:58 -08:00
2015-01-19 14:48:12 -08:00
Bootstrap's `package.json` contains some additional metadata under the following keys:
2015-08-26 22:12:06 +03:00
- `sass` - path to Bootstrap's main [Sass ](http://sass-lang.com/ ) source file
2015-01-19 14:48:12 -08:00
- `style` - path to Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization)
2015-12-17 13:29:58 -08:00
### RubyGems
2016-10-04 02:55:59 +10:00
Install Bootstrap in your Ruby apps using [Bundler ](https://bundler.io/ ) (**recommended**) and [RubyGems ](https://rubygems.org/ ) by adding the following line to your [`Gemfile` ](https://bundler.io/gemfile.html ):
2015-12-17 13:29:58 -08:00
{% highlight ruby %}
gem 'bootstrap', '~> 4.0.0.alpha3'
{% endhighlight %}
Alternatively, if you're not using Bundler, you can install the gem by running this command:
{% highlight bash %}
2016-10-06 12:02:52 +11:00
gem install bootstrap -v 4.0.0.alpha3
2015-12-17 13:29:58 -08:00
{% endhighlight %}
[See the gem's README ](https://github.com/twbs/bootstrap-rubygem/blob/master/README.md ) for further details.
2015-06-09 16:09:33 -07:00
### Meteor
2015-03-29 00:08:54 -07:00
{% highlight bash %}
2016-10-06 12:02:52 +11:00
meteor add twbs:bootstrap@={{ site.current_version }}
2015-03-29 00:08:54 -07:00
{% endhighlight %}
2015-06-09 16:09:33 -07:00
### Composer
2015-03-29 00:08:54 -07:00
2015-08-09 22:49:03 -07:00
You can also install and manage Bootstrap's Sass and JavaScript using [Composer ](https://getcomposer.org ):
2015-06-18 23:56:43 -07:00
2015-03-29 00:08:54 -07:00
{% highlight bash %}
2016-10-06 12:02:52 +11:00
composer require twbs/bootstrap:{{ site.current_version }}
2015-03-29 00:08:54 -07:00
{% endhighlight %}
2015-12-17 13:29:58 -08:00
### Bower
2016-10-04 02:55:59 +10:00
Install and manage Bootstrap's Sass and JavaScript using [Bower ](https://bower.io ).
2015-12-17 13:29:58 -08:00
{% highlight bash %}
2016-10-06 12:02:52 +11:00
bower install bootstrap#v {{ site.current_version }}
2015-12-17 13:29:58 -08:00
{% endhighlight %}
2015-08-20 11:31:48 -07:00
### NuGet
If you develop in .NET, you can also install and manage Bootstrap's [CSS ](https://www.nuget.org/packages/bootstrap/ ) or [Sass ](https://www.nuget.org/packages/bootstrap.sass/ ) and JavaScript using [NuGet ](https://www.nuget.org ):
{% highlight powershell %}
2016-10-06 12:02:52 +11:00
Install-Package bootstrap -Pre
{% endhighlight %}
{% highlight powershell %}
Install-Package bootstrap.sass -Pre
2015-08-20 11:31:48 -07:00
{% endhighlight %}
The `-Pre` is required until Bootstrap v4 has a stable release.
2015-01-19 14:48:12 -08:00
2016-07-26 20:20:16 -07:00
{% comment %}
2015-08-09 22:49:03 -07: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 >
2016-07-26 20:20:16 -07:00
{% endcomment %}