Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.15 KB

README.md

File metadata and controls

41 lines (26 loc) · 1.15 KB

bimsc23-datamgmt-session05

requirements to run this repository:

Install Node.js

Download latest stable version from https://nodejs.org/en/ and run the .msi file.

To check if node was installed, open terminal (command line/ Powershell etc) and type command node -v

It should return the Node.js version. Now you have installed Node.js. As part of the installation, the npm was installed. We will be using npm to manage and install packages.

Install Vue

To install Vue, run this command in your terminal: npm install -g @vue/cli

It might take some time to install.

Install Vue helpful extensions

In VisualStudioCode, go to Extensions and install Volar extension: https://marketplace.visualstudio.com/items?itemName=Vue.volar

Install all necesary dependencies for the project

npm run i

Compiles and hot-reloads for development

npm run serve

References: