Support CoreUI Development
CoreUI is an MIT-licensed open source project and is completely free to use. However, the amount of effort needed to maintain and develop new features for the project is not sustainable without proper financial backing.
You can support our Open Source software development in the following ways:
- Buy the CoreUI PRO and get access to all PRO components, features, templates, and dedicated support.
- Hire Us! We create stunning designs, high-conversion landing pages, functional mobile apps and reliable web services – everything you need to offer your products or services online and always stay a tap away from your customers.
- Give us a star ⭐️ on Github.
Installation
Learn how to use CoreUI Bootstrap Admin Dashboard Templates including npm scripts to build templates, compile source code, run tests, and more.
Tooling setup
CoreUI Bootstrap Admin Templates uses npm scripts for its build system. Our package.json includes convenient methods for working with the framework, including compiling code, running tests, and more.
To use our build system and run our admin template locally, you’ll need a copy of source files and Node. Follow these steps and you should be ready to rock:
- Download and install Node.js, which we use to manage our dependencies.
- Download CoreUI Admin Template or Download CoreUI PRO Admin Template.
- Navigate to the root template directory and run
npm install
to install our local dependencies listed inpackage.json
.
When completed, you’ll be able to run the various commands provided from the command line.
Using npm scripts
Our package.json
includes numerous tasks for developing the project. Run npm run
to see all the npm scripts in your terminal. Primary tasks include:
Task | Description |
---|---|
npm start |
Compiles CSS and JavaScript, builds the documentation, and starts a local server. |
npm run build |
Creates the dist/ directory with compiled files. Uses Sass, Autoprefixer, and terser. |
npm test |
Runs tests locally after running npm run dist |
Sass
CoreUI uses Dart Sass for compiling our Sass source files into CSS files (included in our build process), and we recommend you do the same if you’re compiling Sass using your own asset pipeline.
Dart Sass uses a rounding precision of 10 and for efficiency reasons does not allow adjustment of this value. We don’t lower this precision during further processing of our generated CSS, such as during minification, but if you chose to do so we recommend maintaining a precision of at least 6 to prevent issues with browser rounding.
Autoprefixer
We uses [Autoprefixer][autoprefixer] (included in our build process) to automatically add vendor prefixes to some CSS properties at build time. Doing so saves us time and code by allowing us to write key parts of our CSS a single time while eliminating the need for vendor mixins like those found in v3.
We maintain the list of browsers supported through Autoprefixer in a separate file within our GitHub repository. See .browserslistrc
.
Local template
Here’s how to get it started:
- Run through the tooling setup above to install all dependencies.
- From the root template directory, run
npm run start
in the command line. - Open
http://localhost:9001/
in your browser, and voilà.
Troubleshooting
Should you encounter problems with installing dependencies, uninstall all previous dependency versions (global and local). Then, rerun npm install
.