core-logo

Download

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

On this page:



Compiled CSS and JS

Download ready-to-use compiled code for CoreUI v3.2.0 to easily drop into your project, which includes:

  • Compiled and minified CSS bundles (see CSS files comparison)
  • Compiled and minified JavaScript plugins

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

Download

Source files

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

Download source

CoreUI CDN

<link rel="stylesheet" href="https://unpkg.com/@coreui/coreui/dist/css/coreui.min.css">
<script src="https://unpkg.com/@coreui/coreui/dist/js/coreui.bundle.min.js"></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 will require a Sass compiler and Autoprefixer for a setup that matches our official compiled versions.

npm

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

npm install @coreui/coreui

const coreui = require('coreui') or import coreui from '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

Composer

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

composer require coreui/coreui:3.2.0