Contents

Discover what’s included in Melodic, including our precompiled and source code flavors. Remember, Melodic’s JavaScript plugins require jQuery.

Precompiled Melodic

Once downloaded, unzip the compressed folder and you’ll see something like this:

melodic/
├── css/
│   ├── melodic.css
│   ├── melodic.css.map
│   ├── melodic.min.css
│   ├── melodic.min.css.map
│   ├── melodic-grid.css
│   ├── melodic-grid.css.map
│   ├── melodic-grid.min.css
│   ├── melodic-grid.min.css.map
│   ├── melodic-reboot.css
│   ├── melodic-reboot.css.map
│   ├── melodic-reboot.min.css
│   └── melodic-reboot.min.css.map
└── js/
    ├── melodic.bundle.js
    ├── melodic.bundle.min.js
    ├── melodic.js
    └── melodic.min.js

This is the most basic form of Melodic: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JavaScript (melodic.*), as well as compiled and minified CSS and JS (melodic.min.*). CSS source maps (melodic.*.map) are available for use with certain browsers’ developer tools. Bundled JS files (melodic.bundle.js and minified melodic.bundle.min.js) include Popper, but not jQuery.

CSS files

Melodic includes a handful of options for including some or all of our compiled CSS.

CSS files Layout Content Components Utilities
melodic.css
melodic.min.css
Included Included Included Included
melodic-grid.css
melodic-grid.min.css
Only grid system Not included Not included Only flex utilities
melodic-reboot.css
melodic-reboot.min.css
Not included Only Reboot Not included Not included

JavaScript files

Similarly, we have options for including some or all of our compiled JavaScript.

JavaScript files Popper jQuery
melodic.bundle.js
melodic.bundle.min.js
Included Not included
melodic.js
melodic.min.js
Not included Not included

Melodic source code

The Melodic 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:

melodic/
├── dist/
│   ├── css/
│   └── js/
├── docs/
│   └── examples/
├── 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 docs/ folder includes the source code for our documentation, and examples/ of Melodic usage. Beyond that, any other included file provides support for packages, license information, and development.