Vite实现原理

一、Vite介绍

1. Vite概念:

  • Vite是一个面向现代浏览器的一个更轻更快的web应用开发工具
  • 它基于ECMAScript标准原生模块系统(ES Modules)实现

2. Vite项目依赖:

  • Vite
  • @vue/compiler-sfc

compiler-sfc用来编译项目中的.vue结尾的单文件组件,在vue2中采用的vue-template-compliler

3. 基础使用:

vite serve / vite build

Vite实现原理_第1张图片

在运行vite serve的时候不需要打包,直接开启一个web服务器,当浏览器请求服务器,比如请求一个单文件组件,这个时候在服务器端编译单文件组件,然后把编译的结果返回给浏览器,注意这里的编译是在服务器端,另外模块的处理是在请求到服务器端处理的。

vue-cli-service serve

Vite实现原理_第2张图片
当运行vue-cli-service serve的时候,它内部会使用webpack,首先去打包所有的模块,如果模块数量比较多的话,打包速度会非常的慢,把打包的结果存储到内存中,然后才会开启开发的web服务器,浏览器请求web服务器,把内存中打包的结果直接返回给浏览器,像webpack这种工具,它的做法是将所有的模块提前编译打包进bundle里,也就是不管模块是否被执行,是否使用到,都要被编译和打包到bundle。随着项目越来越大,打包后的bundle也越来越大,打包的速度自然也就越来越慢。

Vite利用现代浏览器原生支持的ESModule这个模块化的特性省略了对模块的打包,对于需要编译的文件,比如单文件组件、样式模块等,vite采用的另一种模式即时编译,也就是说只有具体去请求某个文件的时候,才会在服务端编译这个文件,所以这种即时编译的好处主要体现在按需编译,速度会更快。

4. HMR:

  • Vite HMR
  • 立即编译当前所修改的文件
  • Webpack HMR
  • 会自动以这个文件位入口重新build一次,所有的涉及到的依赖也会被重新加载一次,所以反应速度会慢一些

5. Build:

  • Vite build
  • Rollup
  • Dynamic import
    • polyfill

6. 打包OR不打包:

  • 使用Webpack打包的两个原因:
  • 浏览器环境并不支持模块化(而现在大部分浏览器都支持ESM模块化了)
  • 零散的模块文件会产生大量的HTTP请求(HTTP2可以长连接)

Vite实现原理_第3张图片

8. 开箱即用:

  • TypeScript - 内置支持
  • less/sass/stylus/postcss - 内置支持(需要单独安装)
  • JSX
  • Web Assembly

9. Vite特性

  • 快速冷启动
  • 模块热更新
  • 按需编译
  • 开箱即用

二、vite核心功能

  • 静态web服务器
  • 编译单文件组件
    • 拦截浏览器不识别的模块,并处理
  • HMR

初始化项目,安装依赖
Vite实现原理_第4张图片

三、原理实现-静态web服务器

#!/usr/bin/env node

const koa = require('koa');
const send = require('koa-send');

const app = new Koa();

// 1.静态文件服务器
app.use(async (ctx, next) => { 
  await send(ctx, ctx.path, { root: process.cwd(), index: 'index.html' });
  await next();
})

app.listen(3000);

四、修改第三方模块路径

#!/usr/bin/env node

const koa = require('koa');
const send = require('koa-send');

const app = new Koa();

const streamToString = stream => new Promise((resolve, reject) => {
  const chunks = [];
  stream.on('data', (chunk) => {
    chunks.push(chunk);
  })
  stream.on('end', () => {resolve(Buffer.concat(chunks).toString('utf-8'));});
  stream.on('error', reject)
})

// 1.静态文件服务器
app.use(async (ctx, next) => { 
  await send(ctx, ctx.path, { root: process.cwd(), index: 'index.html' });
  await next();
})

// 2.修改第三方模块的路径
app,use(async (ctx, next) => { 
  if(ctx.type === 'application/javascript') {
    // import vue from 'vue'
    // import App from './App.vue'
    ctx.body = contents.replace(/(from\s+['"])/g, '$s1/@modules/')
  }
})

app.listen(3000);

五、编译单文件组件

npm i @vue/compiler-sfc

#!/usr/bin/env node
const path = require('path')
const { Readable } = require('stream')
const Koa = require('koa')
const send = require('koa-send')
const compilerSFC = require('@vue/compiler-sfc')

const app = new Koa()

const streamToString = stream => new Promise((resolve, reject) => {
  const chunks = []
  stream.on('data', chunk => chunks.push(chunk))
  stream.on('end', () => resolve(Buffer.concat(chunks).toString('utf-8')))
  stream.on('error', reject)
})

const stringToStream = text => {
  const stream = new Readable()
  stream.push(text)
  stream.push(null)
  return stream
}

// 3. 加载第三方模块
app.use(async (ctx, next) => {
  // ctx.path --> /@modules/vue
  if (ctx.path.startsWith('/@modules/')) {
    const moduleName = ctx.path.substr(10)
    const pkgPath = path.join(process.cwd(), 'node_modules', moduleName, 'package.json')
    const pkg = require(pkgPath)
    ctx.path = path.join('/node_modules', moduleName, pkg.module)
  }
  await next()
})

// 1. 静态文件服务器
app.use(async (ctx, next) => {
  await send(ctx, ctx.path, { root: process.cwd(), index: 'index.html' })
  await next()
})

// 4. 处理单文件组件
app.use(async (ctx, next) => {
  if (ctx.path.endsWith('.vue')) {
    const contents = await streamToString(ctx.body)
    const { descriptor } = compilerSFC.parse(contents)
    let code
    if (!ctx.query.type) {
      code = descriptor.script.content
      // console.log(code)
      code = code.replace(/export\s+default\s+/g, 'const __script = ')
      code += `
      import { render as __render } from "${ctx.path}?type=template"
      __script.render = __render
      export default __script
      `
    } else if (ctx.query.type === 'template') {
      const templateRender = compilerSFC.compileTemplate({ source: descriptor.template.content })
      code = templateRender.code
    }
    ctx.type = 'application/javascript'
    ctx.body = stringToStream(code)
  }
  await next()
})

// 2. 修改第三方模块的路径
app.use(async (ctx, next) => {
  if (ctx.type === 'application/javascript') {
    const contents = await streamToString(ctx.body)
    // import vue from 'vue'
    // import App from './App.vue'
    ctx.body = contents
      .replace(/(from\s+['"])(?![\.\/])/g, '$1/@modules/')
      .replace(/process\.env\.NODE_ENV/g, '"development"')
  }
})

app.listen(3000)
console.log('Server running @ http://localhost:3000')

六、使用

npm link 全局添加npm 包
如果不使用npm rm -g vite-cli

在vue目录里面启动命令: vite-cli

你可能感兴趣的:(vue.js)