Discover what's included in CoreUI, including our precompiled and source code flavors.
On this page:Once downloaded, unzip the compressed folder and you’ll see something like this:
coreui/
├── css/
│ ├── coreui.css
│ ├── coreui.css.map
│ ├── coreui.min.css
│ └── coreui.min.css.map
└── js/
├── coreui.bundle.js
├── coreui.bundle.js.map
├── coreui.bundle.min.js
├── coreui.bundle.min.js.map
├── coreui.esm.js
├── coreui.esm.js.map
├── coreui.esm.min.js
├── coreui.esm.min.js.map
├── coreui.js
├── coreui.js.map
├── coreui.min.js
└── coreui.min.js.map
This is the most basic form of CoreUI: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (coreui.*
), as well as compiled and minified CSS and JS (coreui.min.*
). source maps (coreui.*.map
) are available for use with certain browsers’ developer tools. Bundled JS files (coreui.bundle.js
and minified coreui.bundle.min.js
) include Popper.
CoreUI includes a handful of options for including some or all of our compiled CSS.
CSS files | Layout | Content | Components | Utilities |
---|---|---|---|---|
coreui.css coreui.min.css |
Included | Included | Included | Included |
Similarly, we have options for including some or all of our compiled JavaScript.
JS files | Popper | Perfect Scrollbar |
---|---|---|
coreui.bundle.js coreui.bundle.min.js |
Included | Included |
coreui.js coreui.min.js |
Not included | Included |
The CoreUI source code download includes the precompiled CSS and JavaScript assets, along with source Sass, JavaScript, and documentation. More specifically, it includes the following and more:
coreui/
├── css/
├── dist/
│ ├── css/
│ └── js/
├── js/
└── scss/
The scss/
and js/
are the source code for our CSS and JavaScript. The dist/
folder includes everything listed in the precompiled download section above. The site/docs/
folder includes the source code for our documentation, and examples/
of CoreUI usage. Beyond that, any other included file provides support for packages, license information, and development.