Detailed explanation of Vite's new experience

Detailed explanation of Vite's new experience

What is Vite? (It’s a new toy on the front end)

Vite is a web development and construction tool that updates code during the development process through native ES module imports to achieve the purpose of rapid updates.

Features

  • Ultra-fast cold server boots
  • Instant module updates
  • True on-demand compilation
  • Smaller packaging size

Get Started

Note for Vue users: Vite currently only works with Vue 3.x. This also means that you cannot use libraries that are not yet compatible with Vue 3.

Install

npm init vite-app <project name> 
cd <project name> 
npm install 
npm run dev
## After executing the above commands, it means that your vue3.0 project has used vite

What is the difference between vite and webpack in terms of experience?

My current feeling about Vite can be summed up in one word: fast.

  • When starting the debugging service for the first time, it is twice as fast as webpack.
  • The packing speed is also more than twice as fast.
  • The size of the packaged file is less than half of the original webpack file.

How does Vite work?

In the author's words, it is to directly request the .vue file and let the browser parse it

The latest version of the browser supports the direct use of import and export keywords, which means that the browser begins to natively support module functions, which is also one of the features used by Vite.

"After saying so much, why not grab a bag and see?"

sure! Here I only modified the HelloWorld.vue file

Modify the packet capture of HelloWorld

Then I modified the App.vue file again (don’t mind the timestamp is different, I just accidentally deleted it and was too lazy to start over)

Second revision

At this point, compared to Webpack's Code Splitting method of implementing on-demand loading, Vite has indeed given me a much faster experience

at last

Although Vite is very cool, the current RC 1 version is only suitable for Vue3.x and cannot use libraries that are incompatible with Vue3. (It is definitely faster than webpack in all aspects)

This is the end of this article about Vite's new experience. For more information about Vite's new experience, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Vue3.0 + TypeScript + Vite first experience
  • Pros and Cons of Vite and Vue CLI

<<:  A practical tutorial on building a fully distributed Hadoop environment under Ubuntu 16.4

>>:  Implementation of MySQL custom list sorting by specified field

Recommend

Basic principles for compiling a website homepage

1. The organizational structure of the hypertext d...

JSONP cross-domain simulation Baidu search

Table of contents 1. What is JSONP 2. JSONP cross...

MySQL 8.0.12 installation graphic tutorial

MySQL8.0.12 installation tutorial, share with eve...

MySQL 5.7.23 installation and configuration method graphic tutorial

This article records the installation tutorial of...

Navicat multiple ways to modify MySQL database password

Method 1: Use the SET PASSWORD command First log ...

Analysis of the Principles of MySQL Slow Query Related Parameters

MySQL slow query, whose full name is slow query l...

Use Vue3 for data binding and display list data

Table of contents 1. Comparison with Vue2 1. New ...

Implementation of setting fixed IP when starting docker container

Network type after docker installation [root@insu...

Linux uses iftop to monitor network card traffic in real time

Linux uses iftop to monitor the traffic of the ne...

Example code for implementing card waterfall layout with css3 column

This article introduces the sample code of CSS3 c...

Basic usage of wget command under Linux

Table of contents Preface 1. Download a single fi...

MySQL index pushdown details

Table of contents 1. Leftmost prefix principle 2....