- Install Node JS
- This contains both
node
andnpm
.
- This contains both
# Install Vue CLI
npm install --global @vue/cli
# Create new project from Template
vue init webpack-simple project-name
# cd to new project
cd project-name
# Install node_module project dependencies
npm install