Sneak Peek! CoreUI 3 is coming! Please try the latest version - CoreUI PRO 3.0.0-alpha.. Try CoreUI PRO 3.0.0-alpha

Introduction

CoreUI is the fastest way to build a modern dashboard for any platforms, browser or device. A complete Dashboard UI Kit that allows you to quickly build eye-catching, high-quality, high-performance responsive applications.

Admin Panel Template

The fastest way to start using CoreUI is to download our ready to use admin template.

Installation

git clone https://github.com/coreui/coreui-free-bootstrap-admin-template.git my-project # clone the repo $ cd my-project # go into app's directory $ npm install # install app's dependencies

Usage

npm run serve # serve with hot reload at localhost:3000. $ npm run build # build for production with minification

Add CoreUI to an existing project

Looking to quickly add CoreUI to your project? Use following links or download source files.

CSS

Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS.

<link rel="stylesheet" href="https://unpkg.com/browse/@coreui/[email protected]/dist/css/coreui.min.css">

JS

Multiple of our components need the use of JavaScript to function. Especially, they need jQuery, Popper.js, and our own JavaScript plugins. Put the following <script>s near the end of your pages, right before the closing </body> tag, to enable them. jQuery must come first, then Popper.js, then Bootstrap and then our JavaScript plugins.

<script src="http://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script> <script src="https://unpkg.com/browse/@coreui/[email protected]/dist/js/coreui.min.js"></script>

npm

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

npm install @coreui/coreui

Starter template

Be sure to have your pages set up with the latest design and development standards. That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors. Put it all together and your pages should look like this:

<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- CoreUI CSS --> <link rel="stylesheet" href="https://unpkg.com/browse/@coreui/[email protected]/dist/css/coreui.min.css"> <title>Hello, world!</title> </head> <body class="app"> <h1>Hello, world!</h1> <!-- Optional JavaScript --> <!-- jQuery first, then Popper.js, Bootstrap, then CoreUI --> <script src="http://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script> <script src="https://unpkg.com/browse/@coreui/[email protected]/dist/js/coreui.min.js"></script> </body> </html>

Community

Stay up to date on the development of CoreUI and reach out to the community with these helpful resources.