Home > Web Front-end > Vue.js > body text

How to run vue.js project

coldplay.xixi
Release: 2020-11-17 18:22:13
Original
3794 people have browsed it

How to run the vue.js project: first download and install node, and run the relevant commands; then select the directory and select the desktop to store the new project; finally, run the command in the command line in the desktop directory , initialize a project.

How to run vue.js project

[Related article recommendations: vue.js]

vue.js project running Method:

1. Download and install node. The installation process is very simple. Just "Next" all the way. After the installation is completed, open the command line tool and enter node -v, as shown below. If the corresponding version number appears, the installation is successful.

How to run vue.js project

2. The npm package manager is integrated in node. Therefore, directly entering npm -v will display the npm version information as shown below.

How to run vue.js project

3. Enter npm install -g cnpm --registry=http://registry.npm.taobao.org in the command line and wait.

How to run vue.js project

4. Run the command cnpm install -g vue-cli on the command line and wait for the installation to complete. Through the above three steps, the environment and tools we need to prepare are ready, and then we can start using vue-cli to build the project.

How to run vue.js project

How to run vue.js project

5. To create a project, first we need to select the directory, and then change the directory to the selected directory on the command line. . Here, I choose the desktop to store the new project, so we need to cd the directory to the desktop first.

How to run vue.js project

How to run vue.js project

6. In the desktop directory, run the command vue init webpack firstVue in the command line. This command means to initialize a project, in which webpack is the build tool, that is, the entire project is based on webpack. where firstVue is the name of the entire project folder, which will be automatically generated in the directory you specify.

How to run vue.js project

How to run vue.js project

##Related free learning recommendations:

javascript (video)

The above is the detailed content of How to run vue.js project. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!