Download

Download CoreUI for Bootstrap to get the compiled CSS and JavaScript, source code, or include it with your favorite package managers like npm, RubyGems, and more.

Compiled CSS and JS

Download ready-to-use compiled code for CoreUI for Bootstrap v5.0.0-rc.2 to easily drop into your project, which includes:

This doesn’t include documentation, source files, or any optional JavaScript dependencies like Popper.

Download

Source files

Compile CoreUI for 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, they are included for developing CoreUI for Bootstrap and its docs, but they’re likely unsuitable for your own purposes.

Download source

CDN via jsDelivr

Skip the download with jsDelivr to deliver cached version of CoreUI’s compiled CSS and JS to your project.

<link href="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/coreui.min.css" rel="stylesheet" integrity="sha384-3FeBAJJer0hMkSUFY0O4q1U6Di0w7FL7dmFaei7DXhirO8frz7qUqV5r1c2WWezh" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.bundle.min.js" integrity="sha384-IdPyRVtf8Bx60pCtleeuTZDV17yrPAvxrtQd8mS4v/MzrR5XB9G+9uonSYVJ1MZK" crossorigin="anonymous"></script>

If you’re using our compiled JavaScript and prefer to include Popper separately, add Popper before our JS, via a CDN preferably.

<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.min.js" integrity="sha384-6G5TlxWRCRw1KqxRWQkSH6sVXtsN3i29I3nKJJ2IOCcp4xHoP3IPbVnD82oGhdO0" crossorigin="anonymous"></script>

If you use CoreUI PRO please use following links

<link href="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/coreui.min.css" rel="stylesheet" integrity="sha384-ry0/VADFZoMb+nqZUTCl4BKR2Tf8jjcAQf5gGULlcwkePPL1I8e20WTTUopDjrx6" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.bundle.min.js" integrity="sha384-aGTCMmOaT4om0+lHGIaFUYKB+b7cRjX9/j/rq19umAyp+xKEAePEeVcH3pTxkVbu" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.min.js" integrity="sha384-trR6IhYQRtpINztr6R04aoHgYOx51jDWH//6SEZAChFnRYFsybmABviyOkTXJKef" crossorigin="anonymous"></script>

Package managers

Pull in CoreUI’s source files into nearly any project with some of the most popular package managers. No matter the package manager, CoreUI for Bootstrap will require a Sass compiler and Autoprefixer for a setup that matches our official compiled versions.

npm

Install CoreUI for Bootstrap in your Node.js powered apps with the npm package:

npm install @coreui/coreui

or

npm install @coreui/coreui-pro

const coreui = require('@coreui/coreui') or import coreui from '@coreui/coreui' will load all of CoreUI’s plugins onto a coreui object. The coreui module itself exports all of our plugins. You can manually load CoreUI’s plugins individually by loading the /js/dist/*.js files under the package’s top-level directory.

CoreUI’s package.json contains some additional metadata under the following keys:

  • sass - path to CoreUI’s main Sass source file
  • style - path to CoreUI’s non-minified CSS that’s been precompiled using the default settings (no customization)

yarn

Install CoreUI in your Node.js powered apps with the yarn package:

yarn add @coreui/coreui

or

yarn add @coreui/coreui-pro

Composer

You can also install and manage CoreUI’s Sass and JavaScript using Composer:

composer require coreui/coreui:5.0.0-rc.2