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:Download ready-to-use compiled code for CoreUI v3.2.0 to easily drop into your project, which includes:
This doesn’t include documentation, source files, or any optional JavaScript dependencies like Popper.js.
Compile CoreUI with your own asset pipeline by downloading our source Sass, JavaScript, and documentation files. This option requires some additional tooling:
Should you require build tools, they are included for developing CoreUI and its docs, but they’re likely unsuitable for your own purposes.
<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>
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.
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 filestyle
- path to CoreUI’s non-minified CSS that’s been precompiled using the default settings (no customization)Install CoreUI in your Node.js powered apps with the yarn package:
yarn add @coreui/coreui
You can also install and manage CoreUI’s Sass and JavaScript using Composer:
composer require coreui/coreui:3.2.0