All other assets shown in the demo are included in the download. All external libraries are loaded with npm. All it takes to get up and running with our template is NodeJS, which is quickly installed and well documented. NodeJS automates the whole process of loading external libraries and allows for an easy headstart.
MAC or Linux Installation
Create a Project directory on your home directory. Copy all files from Basix-Adminfolder on your project folder. Go to your directory with “cd” command.
Node.js Install
sudo apt-get update
sudo apt-get install nodejs
Single Line Installlation
#install dependencies
yarnpkg install
# serve with hot reload at localhost:8080
yarn run dev
# build for production with minification
yarn run build
After finishing install you will see a folder named “node_modules” created.
NPM Install
sudo apt-get install npm
Vue.js and Webpack Install
sudo npm install -g vue-cli
vue init webpack-simple vue-cli
After that you need to run “npm install” command. All Dependencies will install from “package.json” file, it will take couple of minutes to finish.
You need to run few more commands for Webpack Dependency
npm install node-sass
npm install sass-loader
npm install css-loader
npm install vue-chartjs