vite 是什么
- 一个前端打包工具,Vue作者发起的项目
- 借助 Vue 的影响力,发展较快,和 webpack 竞争
- 优势:开发环境下无需打包,启动速度快
为什么快
- 开发环境使用ES6 Module,无需打包 ——非常快
- 生产环境使用 rollup,并不会快很多
ES6 Module 可以在现代浏览器中运行
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script type="module">
import add from './es/add.js';
const res = add(1, 2);
console.log('res', res);
</script>
</body>
</html>