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.
🤖 Looking for the LLM-optimized version?View llm.md
Compiled CSS and JS
Download ready-to-use compiled code forCoreUI for Bootstrap v5.4.3 to easily drop into your project, which includes:
- Compiled and minified CSS bundles (seeCSS files comparison)
- Compiled and minified JavaScript plugins (seeJS files comparison)
This doesn’t include documentation, source files, or any optional JavaScript dependencies like Popper.
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 requirebuild tools, they are included for developing CoreUI for Bootstrap and its docs, but they’re likely unsuitable for your own purposes.
CDN via jsDelivr
Skip the download withjsDelivr to deliver cached version of CoreUI’s compiled CSS and JS to your project.
<linkhref="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/coreui.min.css"rel="stylesheet"integrity="sha384-oMIIhJL1T5s+PxJr6+Qb0pO1IRFB6OGMM+J57UBT3UQKxSVsb++MkXpu9cLqaJxu"crossorigin="anonymous"><scriptsrc="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.bundle.min.js"integrity="sha384-SWhFOmxmv1pfTLKVBW7q8uossvuaWNeQFdmaWi6xdldiUjyqG9F6V2R2BOC8gkxx"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.
<scriptsrc="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"crossorigin="anonymous"></script><scriptsrc="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.min.js"integrity="sha384-eaf/aooEyB34Dibp3gcjhvn4i9UJdaoubxPpJFDc9BJc7ElrpST+3oP84x76fUpf"crossorigin="anonymous"></script>
If you use CoreUI PRO please use following links
<linkhref="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/css/coreui.min.css"rel="stylesheet"integrity="sha384-GsjPEmtoEnF/KvLlf3NreYWrhzsNfVZiDYxapQDlVHqVQYi8WCP/He2usV/r4eof"crossorigin="anonymous"><scriptsrc="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.bundle.min.js"integrity="sha384-SMiw+LVjSwW5vmKu0hAExEHRA2/voCGvFNnWG8AZhvXSyLXLonnHuWBDawDjEoyR"crossorigin="anonymous"></script>
<scriptsrc="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"crossorigin="anonymous"></script><scriptsrc="https://cdn.jsdelivr.net/npm/@coreui/[email protected]/dist/js/coreui.min.js"integrity="sha384-gVrUvcJZTJzBOP0aeFeFwUi6PbsJVZvzFwgDWMrgbVZ/YvBGHhGUK81GQ5yRCuCl"crossorigin="anonymous"></script>
Package managers
Pull in CoreUI’ssource files into nearly any project with some of the most popular package managers. No matter the package manager, CoreUI for Bootstrap willrequire a Sass compiler andAutoprefixer for a setup that matches our official compiled versions.
npm
Install CoreUI for Bootstrap in your Node.js powered apps withthe npm package:
npm install @coreui/coreui
or
npm install @coreui/coreui-pro
const coreui = require('@coreui/coreui')
orimport coreui from '@coreui/coreui'
will load all of CoreUI’s plugins onto acoreui
object.Thecoreui
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’spackage.json
contains some additional metadata under the following keys:
sass
- path to CoreUI’s mainSass source filestyle
- 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 withthe yarn package:
yarn add @coreui/coreui
or
yarn add @coreui/coreui-pro
Bun
Install CoreUI in your Bun or Node.js powered apps withthe Bun CLI:
bun add @coreui/coreui
or
bun add @coreui/coreui-pro
Composer
You can also install and manage CoreUI’s Sass and JavaScript usingComposer:
composer require coreui/coreui:5.4.3