Package contents:The Zip file contains the compiled CSS and JavaScript files, which is everything you need to get started
Folder Description
/css Contains the Uimini CSS
/js Contains the Uimini JavaScrip
Html MarkupAdd the compiled and minified CSS and JavaScript to the head element of your HTML5 document. For your basic setup, that's it.
Example:
  

<html>
  <head>
      <title>Title</title>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="css/uimini.min.css" />
      <script src="js/uimini.min.js"></script>
  </head>
  <body>
  </body>
</html>
  

Installation (source)

Learn where to download and how to compile the Uimini sources.

Since 2020 uimini v1 is not supported. But if you still want to use first version follow one of this options:

Stable v1 available on github branch: https://github.com/uimini/uimini/tree/v1-stable

Download stable realize of v1

Learn where to download and how to compile the Uimini v1 sources. v1 release builded with webpack v1 release builded with gulp (required node.js 11v) cause gulp is broken with node.js 12v+

NPM


npm install uimini@1.1.3

Yarn


yarn add uimini@1.1.3

Build From Source

Optionally, you can build Uimini from its source on Github. To do this, you'll need to have Node.js and npm installed. I use Gulp to build Uimini.

  
git clone https://github.com/vedees/uimini.git
cd uimini
# switch to v1 branch!!!
git checkout v1-stable
# install and run server
npm install
npm start