download.md 4.41 KB
Newer Older
1
---
Mark Otto's avatar
Mark Otto committed
2
layout: docs
3
title: Download
Mark Otto's avatar
Mark Otto committed
4
description: Download Bootstrap's compiled CSS and JavaScript, source code, or include it with your favorite package manager.
5
group: getting-started
6
7
---

Mark Otto's avatar
Mark Otto committed
8
**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.
9

Mark Otto's avatar
Mark Otto committed
10
### Source files
11
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).**
Mark Otto's avatar
Mark Otto committed
12
13

<a href="{{ site.download.source }}" class="btn btn-bs btn-outline" onclick="ga('send', 'event', 'Getting started', 'Download', 'Download source');">Download source</a>
14

Mark Otto's avatar
Mark Otto committed
15
16
## Package managers

17
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.
Mark Otto's avatar
Mark Otto committed
18

19
20
21
22
{% callout warning %}
**Heads up!** Not all package managers have the v4 alpha published yet, but we should have them up shortly!
{% endcallout %}

Mark Otto's avatar
Mark Otto committed
23
### npm
24

Mark Otto's avatar
Mark Otto committed
25
Install Bootstrap in your Node powered apps with [the npm package](https://www.npmjs.org/package/bootstrap):
26

27
28
29
{% highlight bash %}
$ npm install bootstrap@{{ site.current_version }}
{% endhighlight %}
Mark Otto's avatar
Mark Otto committed
30

Mark Otto's avatar
Mark Otto committed
31
`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.
Mark Otto's avatar
Mark Otto committed
32

Mark Otto's avatar
Mark Otto committed
33
34
Bootstrap's `package.json` contains some additional metadata under the following keys:

XhmikosR's avatar
XhmikosR committed
35
- `sass` - path to Bootstrap's main [Sass](http://sass-lang.com/) source file
Mark Otto's avatar
Mark Otto committed
36
37
- `style` - path to Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization)

38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
### RubyGems

Install Bootstrap in your Ruby apps using [Bundler](http://bundler.io/) (**recommended**) and [RubyGems](https://rubygems.org/) by adding the following line to your [`Gemfile`](http://bundler.io/gemfile.html):

{% 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 %}
$ gem install bootstrap -v 4.0.0.alpha3
{% endhighlight %}

[See the gem's README](https://github.com/twbs/bootstrap-rubygem/blob/master/README.md) for further details.

Mark Otto's avatar
Mark Otto committed
54
### Meteor
Mark Otto's avatar
Mark Otto committed
55
56

{% highlight bash %}
57
$ meteor add twbs:bootstrap@={{ site.current_version }}
Mark Otto's avatar
Mark Otto committed
58
59
{% endhighlight %}

Mark Otto's avatar
Mark Otto committed
60
### Composer
Mark Otto's avatar
Mark Otto committed
61

Mark Otto's avatar
Mark Otto committed
62
You can also install and manage Bootstrap's Sass and JavaScript using [Composer](https://getcomposer.org):
Mark Otto's avatar
Mark Otto committed
63

Mark Otto's avatar
Mark Otto committed
64
{% highlight bash %}
65
$ composer require twbs/bootstrap:{{ site.current_version }}
Mark Otto's avatar
Mark Otto committed
66
67
{% endhighlight %}

68
69
70
71
72
73
74
75
### Bower

Install and manage Bootstrap's Sass and JavaScript using [Bower](http://bower.io).

{% highlight bash %}
$ bower install bootstrap#v{{ site.current_version }}
{% endhighlight %}

76
77
78
79
80
81
82
83
84
85
### 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 %}
PM> Install-Package bootstrap -Pre
PM> Install-Package bootstrap.sass -Pre
{% endhighlight %}

The `-Pre` is required until Bootstrap v4 has a stable release.
Mark Otto's avatar
Mark Otto committed
86

87
{% comment %}
Mark Otto's avatar
Mark Otto committed
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
## 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>
109
{% endcomment %}