UIK - Universal Interactive Kit | A complete framework that helps developers to code fast for elements and layouts in HTML.
npm install uik-frameworkrender
npm init
`
type this in your project assets folder, it will crete a package.json file
`render
"dependencies": {
"uik-framework": "^0.3.4"
},
`
Add the dependencies in your project folder
Then Run
`render
yarn install
`
Install Package
`render
npm install uik-framework --save
`
Install Global Dependencies
`render
npm install -g webpack
npm install -g webpack-cli
npm install -g browserify (Browserify)
npm install -g uglify-js (Uglify JS)
npm install -g uglifycss (Uglify Css)
`
Modifications
You can modify which files you want to keep in the dist.
Files can be found in /lib folder.
Build / Compile
Either directly use scss as reuqired
OR
Run this command for CSS & JS compilation
`render
/uik-framework> webpack --config webpack.config.js
`
View Compiled Files
All files will be added in /dist folder
Include Files in your project
Copy and Paste /lib from package inside your project
Add them in your SCSS Production
OR
Add them in our HTML Document
`render
`
OR
`render
"styles": [
"../node_modules/uik-framework/src/dist/css/uik.bundle.min.css"
],
"scripts": [
"../node_modules/uik-framework/src/dist/js/uik.bundle.min.js"
],
``