Best of Vite — 2021
- 1
- 2
Product Hunt·5y
Slidev — Presentation slides for developers
Slidev is a web-based slides maker and presenter powered by Vite. It's designed for developers to focus on writing content in Markdown. It also has the power of HTML and Vue components to deliver pixel-perfect layouts and designs with embedded interactive demos.
- 3
SitePoint·5y
What is Vitejs? An Overview of the New Front-end Build Tool
Vite is a build tool that significantly improves the front-end development experience. You can use Vite to set up a development environment for frameworks like Vue and React. Vite is really fast, because it leverages native ES modules and doesn’t need to rebuild the whole bundle when something changes.
- 4
CSS-Tricks·5y
Vite + _____
Vite, “Next Generation Frontend Tooling” from Evan You, has been capturing a lot of attention. Vite works great with Vue, but Vue doesn’t seem to be the only first-class citizen of Vite. The plugins support Vue and React just the same and it looks like configurations for lit, Preact, and Svelte are easy.
- 5
Hashnode·5y
What is Vite + React!
Vite (French word for "fast", pronounced /vit/) is a build tool that aims to provide a faster and leaner development experience for modern web projects. It consists of two major parts: a dev server that provides rich feature enhancements over native ES modules and a build command that bundles your code with Rollup. We will use Vite to create a React application as we will see below.
- 6
- 7
CSS-Tricks·5y
Comparing the New Generation of Build Tools
A bunch of new developer tools have landed in the past year. They are biting at the heels of the tools that have dominated front-end development over the last few years. Despite their differences, these tools do share a common goal: improve the developer experience. We’ll evaluate each one, outlining what they do, why we need them and their use cases.
- 8
DZone·5y
Building Large Projects With Vue, Vite, and Lerna
Vite is a new build tool from creators of Vue JS framework. It works smoothly with Vue, and with any other web framework just as well. Combined with Lerna, it works great with large modular applications. It is much faster and easier than competitors.
- 9
This Dot·5y
Web Components with Svelte
Svelte is a great framework for building applications, but did you know you can create custom elements and web components with it? In this post, we'll learn how to create a Svelte component, export it as a custom element, and use it. We'll also learn about limitations when doing it.