Basix-Admin VueJS Installation Guide
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 in your home directory. Copy all files from Basix-Admin folder in your project folder. Go to your directory with “cd” command.
Node.js Install
sudo apt-get update sudo apt-get install nodejs
Single Line Installation
#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