Get familiar with the basic setup and overview of Uimini.
Since 2020 uimini v1 is not supported
Folder | Description |
---|---|
/css | Contains the Uimini CSS |
/js | Contains the Uimini JavaScrip |
<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>
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
npm install uimini@1.1.3
yarn add uimini@1.1.3
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