Home > Article > Web Front-end > Install vue files using scaffolding
As a front-end engineer, we will definitely use Vue.js frequently in development. When we need to create a new Vue.js project, the first thing we need to do is to install the Vue.js framework. This article will introduce in detail how to use scaffolding to install Vue files.
1. Introduction to scaffolding
Before introducing how to use scaffolding to install Vue.js, we need to understand what scaffolding is. Scaffolding is a tool that can help us quickly build projects, reduce repetitive work, and improve work efficiency. In the front-end field, commonly used scaffolding includes Vue Cli, Create React App, etc.
The scaffolding completes many project configurations during installation, including Webpack configuration, file structure, etc., so that we do not have to complete these tasks manually, and can quickly build a basic project framework.
2. Project environment preparation
Before installing Vue.js, we need to prepare the environment first. The specific steps are as follows:
Vue.js is developed based on Node.js, so we need to install Node.js first, which is a JavaScript runtime environment. On the Node.js official website, download the installation package that matches your system and install it.
After installing Node.js, let’s check the Node.js version to make sure we have the latest version installed. Enter the following command on the command line:
node -v
If the version number is output on the command line, Node.js has been installed successfully.
npm is the package manager for Node.js. We need to complete the installation before we can use the npm command in the command line. You can enter the following command on the command line to install:
npm install npm -g
npm install -g @vue/cli
vue --version
vue create vue-test
cd vue-test && npm run serve
http://localhost:8080
The above is the detailed content of Install vue files using scaffolding. For more information, please follow other related articles on the PHP Chinese website!