I think it makes more sense to link to the Bootstrap package on Yarn here (like the package link for NPM above)
4.7 KiB
layout | title | description | group | toc |
---|---|---|---|---|
docs | Download | Download Bootstrap to get the compiled CSS and JavaScript, source code, or include it with your favorite package managers like npm, RubyGems, and more. | getting-started | true |
Compiled CSS and JS
Download ready-to-use compiled code for Bootstrap v{{< param current_version >}} to easily drop into your project, which includes:
- Compiled and minified CSS bundles (see [CSS files comparison]({{< docsref "/getting-started/contents#css-files" >}}))
- Compiled and minified JavaScript plugins
This doesn't include documentation, source files, or any optional JavaScript dependencies like Popper.js.
<a href="{{< param "download.dist" >}}" class="btn btn-bd-primary" onclick="ga('send', 'event', 'Getting started', 'Download', 'Download Bootstrap');">Download
Source files
Compile Bootstrap with your own asset pipeline by downloading our source Sass, JavaScript, and documentation files. This option requires some additional tooling:
- Sass compiler (Libsass or Ruby Sass is supported) for compiling your CSS.
- Autoprefixer for CSS vendor prefixing
Should you require [build tools]({{< docsref "/getting-started/build-tools#tooling-setup" >}}), they are included for developing Bootstrap and its docs, but they're likely unsuitable for your own purposes.
<a href="{{< param "download.source" >}}" class="btn btn-bd-primary" onclick="ga('send', 'event', 'Getting started', 'Download', 'Download source');">Download source
BootstrapCDN
Skip the download with BootstrapCDN to deliver cached version of Bootstrap's compiled CSS and JS to your project.
{{< highlight html >}}
}}" integrity="{{< param "cdn.css_hash" >}}" crossorigin="anonymous"> {{< /highlight >}}If you're using our compiled JavaScript, don't forget to include Popper.js, via a CDN preferably, before our JS.
{{< highlight html >}}
{{< /highlight >}}
Package managers
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 for a setup that matches our official compiled versions.
npm
Install Bootstrap in your Node.js powered apps with the npm package:
{{< highlight sh >}} npm install bootstrap {{< /highlight >}}
const bootstrap = require('bootstrap')
or import bootstrap from 'bootstrap'
will load all of Bootstrap's plugins onto a bootstrap
object.
The bootstrap
module itself exports all of our plugins. You can manually load Bootstrap's plugins individually by loading the /js/dist/*.js
files under the package's top-level directory.
Bootstrap's package.json
contains some additional metadata under the following keys:
sass
- path to Bootstrap's main Sass source filestyle
- path to Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization)
yarn
Install Bootstrap in your Node.js powered apps with the yarn package:
{{< highlight sh >}} yarn add bootstrap {{< /highlight >}}
RubyGems
Install Bootstrap in your Ruby apps using Bundler (recommended) and RubyGems by adding the following line to your Gemfile
:
{{< highlight ruby >}} gem 'bootstrap', '~> {{< param current_ruby_version >}}' {{< /highlight >}}
Alternatively, if you're not using Bundler, you can install the gem by running this command:
{{< highlight sh >}} gem install bootstrap -v {{< param current_ruby_version >}} {{< /highlight >}}
See the gem's README for further details.
Composer
You can also install and manage Bootstrap's Sass and JavaScript using Composer:
{{< highlight sh >}} composer require twbs/bootstrap:{{< param current_version >}} {{< /highlight >}}
NuGet
If you develop in .NET, you can also install and manage Bootstrap's CSS or Sass and JavaScript using NuGet:
{{< highlight powershell >}} Install-Package bootstrap {{< /highlight >}}
{{< highlight powershell >}} Install-Package bootstrap.sass {{< /highlight >}}