2014-07-11 08:54:06 +08:00
---
2015-08-15 13:45:55 +08:00
layout: docs
2014-07-11 08:54:06 +08:00
title: Download
2016-10-03 09:19:47 +08:00
description: Download Bootstrap's compiled CSS and JavaScript, source code, or include it with your favorite package manager.
2015-08-06 08:47:45 +08:00
group: getting-started
2014-07-11 08:54:06 +08:00
---
2015-08-10 13:49:03 +08: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-11 08:54:06 +08:00
2015-08-10 13:49:03 +08:00
### Source files
2016-02-07 17: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-10 13:49:03 +08: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-11 06:12:20 +08:00
2015-06-10 07:09:33 +08:00
## Package managers
2016-02-07 17: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-10 13:49:03 +08:00
2015-08-19 14:51:59 +08: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-10 07:09:33 +08:00
### npm
2014-07-11 08:54:06 +08:00
2015-08-10 13:49:03 +08:00
Install Bootstrap in your Node powered apps with [the npm package ](https://www.npmjs.org/package/bootstrap ):
2014-07-11 08:54:06 +08:00
2015-12-18 05:29:58 +08:00
{% highlight bash %}
2016-10-06 09:02:52 +08:00
npm install bootstrap@{{ site.current_version }}
2015-12-18 05:29:58 +08:00
{% endhighlight %}
2015-01-04 12:08:58 +08:00
2015-01-20 06: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-04 12:08:58 +08:00
2015-01-20 06:48:12 +08:00
Bootstrap's `package.json` contains some additional metadata under the following keys:
2015-08-27 03:12:06 +08:00
- `sass` - path to Bootstrap's main [Sass ](http://sass-lang.com/ ) source file
2015-01-20 06:48:12 +08:00
- `style` - path to Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization)
2015-12-18 05:29:58 +08:00
### RubyGems
2016-10-04 00:55:59 +08: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-18 05: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 09:02:52 +08:00
gem install bootstrap -v 4.0.0.alpha3
2015-12-18 05: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-10 07:09:33 +08:00
### Meteor
2015-03-29 15:08:54 +08:00
{% highlight bash %}
2016-10-06 09:02:52 +08:00
meteor add twbs:bootstrap@={{ site.current_version }}
2015-03-29 15:08:54 +08:00
{% endhighlight %}
2015-06-10 07:09:33 +08:00
### Composer
2015-03-29 15:08:54 +08:00
2015-08-10 13:49:03 +08:00
You can also install and manage Bootstrap's Sass and JavaScript using [Composer ](https://getcomposer.org ):
2015-06-19 14:56:43 +08:00
2015-03-29 15:08:54 +08:00
{% highlight bash %}
2016-10-06 09:02:52 +08:00
composer require twbs/bootstrap:{{ site.current_version }}
2015-03-29 15:08:54 +08:00
{% endhighlight %}
2015-12-18 05:29:58 +08:00
### Bower
2016-10-04 00:55:59 +08:00
Install and manage Bootstrap's Sass and JavaScript using [Bower ](https://bower.io ).
2015-12-18 05:29:58 +08:00
{% highlight bash %}
2016-10-06 09:02:52 +08:00
bower install bootstrap#v{{ site.current_version }}
2015-12-18 05:29:58 +08:00
{% endhighlight %}
2015-08-21 02:31:48 +08: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 09:02:52 +08:00
Install-Package bootstrap -Pre
{% endhighlight %}
{% highlight powershell %}
Install-Package bootstrap.sass -Pre
2015-08-21 02:31:48 +08:00
{% endhighlight %}
The `-Pre` is required until Bootstrap v4 has a stable release.
2015-01-20 06:48:12 +08:00
2016-07-27 11:20:16 +08:00
{% comment %}
2015-08-10 13:49:03 +08: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-27 11:20:16 +08:00
{% endcomment %}