vue-cli introduction and installation

vue-cli introduction and installation

1. Introduction

vue-cli is a tool that is deeply integrated with vue . It can help us create vue projects quickly and create some scaffolding-related codes for us. When you really use vue to develop projects, you use vue-cli to create projects.

2. Introduction to vue-cli

Vue CLI is a complete system for rapid development based on Vue.js , providing:

  • Interactive project scaffolding implemented by @vue/cli .
  • Zero configuration prototype development achieved through @vue/cli + @vue/cli-service-global .
  • A runtime dependency (@vue/cli-service), that:
  • (1) Upgradable;
  • (2) Built on webpack with reasonable default configuration; 9
  • (3) Can be configured through the configuration file in the project;
  • (4) Can be extended through plug-ins.
  • A rich collection of official plugins that integrates the best tools in the front-end ecosystem.
  • A fully graphical user interface for creating and managing Vue.js projects.

Vue CLI is committed to standardizing the tooling foundation in the Vue ecosystem. It ensures that various build tools can be smoothly connected based on intelligent default configurations, so that you can focus on writing applications instead of spending days worrying about configuration issues. At the same time, it also provides flexibility to adjust the configuration of each tool without eject .

2.1 CLI

CLI (@vue/cli) is a globally installed npm package that provides vue commands in the terminal. It can quickly build a new project through vue create , or build a prototype of new ideas directly through vue serve . You can also manage all your projects through a graphical interface using vue ui .

2.2 CLI Service

CLI (@vue/cli-service) is a development environment dependency. It is an npm package that is installed locally in every project created by @vue/cli .
CLI server is built on top of webpack and webpack-dev-server . It contains:

  • Core service for loading other CLI plugins;
  • An internal webpack configuration optimized for most applications;
  • The vue-cli-service command within the project provides serve , build , and inspect commands.

2.3 CLI plugin

CLI plugins are npm packages that provide optional functionality to your Vue projects, such as Babel/TypeScript transpilation, ESLint integration, unit testing, end-to-end testing, etc. Vue CLI plugins have names starting with @vue/cli-plugin- (built-in plugins) or vue-cli-plugin - (community plugins) and are very easy to use.

When you run the vue-cli-service command inside your project, it will automatically resolve and load all CLI plugins listed in package.json .

Plugins can be created as part of the project creation process, or added to the project at a later stage. They can also be grouped into a set of reusable preset .

3. @vue-cli installation

Vue CLI 4.x requires Node.js v8.9 or higher (v10 or higher is recommended). You can use n , nvm , or nvm-windows to manage multiple Node versions on the same computer.

The installation command is as follows:

npm install -g @vue/cli

You can use this command to check whether its version is correct

vue --version

This is the end of this article about the introduction and installation of vue-cli. For more relevant vue-cli introduction and installation content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Install Vue cli3 globally and continue to use Vue-cli2.x
  • How to install multiple versions of Vue-CLI
  • Solve the problem of unsuccessful installation of [email protected] and build ts-vue project
  • Detailed explanation of vue-cli scaffolding installation
  • Installation method in vue-cli (detailed steps with pictures and text)
  • Detailed steps for installing and using vue-cli
  • How to install vue and vue-cli with npm and create a project with webpack
  • Vue-cli scaffolding installation tutorial diagram
  • Solution to error -4058 when installing vue-cli
  • Vue learning notes advanced version of vue-cli installation and introduction

<<:  Example code for using CSS to implement the style of logistics progress

>>:  Docker image import and export code examples

Recommend

Vue implements a scroll bar style

At first, I wanted to modify the browser scroll b...

Nginx domain name SSL certificate configuration (website http upgraded to https)

Preface HTTP and HTTPS In our daily life, common ...

How to implement Linux deepin to delete redundant kernels

The previous article wrote about how to manually ...

Detailed tutorial on how to install MySQL 5.7.18 in Linux (CentOS 7) using YUM

The project needs to use MySQL. Since I had alway...

Detailed explanation of react setState

Table of contents Is setState synchronous or asyn...

Summary of methods for writing judgment statements in MySQL

How to write judgment statements in mysql: Method...

Eight common SQL usage examples in MySQL

Preface MySQL continued to maintain its strong gr...

How to manually upgrade the kernel in deepin linux

deepin and Ubuntu are both distributions based on...

Detailed steps for setting up and configuring nis domain services on Centos8

Table of contents Introduction to NIS Network env...

Some common properties of CSS

CSS background: background:#00ffee; //Set the back...

How to resize partitions in CentOS7

Yesterday, I helped someone install a system and ...

Solution to the problem "Table mysql.plugin doesn't exist" when deploying MySQL

Today I deployed the free-installation version of...

MySQL sorting using index scan

Table of contents Install sakila Index Scan Sort ...