DEV Community

Cover image for Why Vite is the best? Advanced Features of Vite
Gautam Vaja for CodeParrot

Posted on • Updated on • Originally published at 10xdev.codeparrot.ai

Why Vite is the best? Advanced Features of Vite

Learn about advanced features of Vite and how it can revolutionize your frontend development.

Vite is revolutionizing the way we approach frontend development with its exceptional speed and efficiency. This blog explores the more sophisticated applications of Vite, highlighting its potential beyond mere app creation.

Pre-bundling Modules with Vite

A key highlight of Vite is its method of managing node_modules during development. By pre-bundling dependencies using esbuild, Vite significantly lightens the browser's workload, thus speeding up development.

Optimizing Pre-bundling:

Vite automatically pre-bundles dependencies, but you can fine-tune this process in vite.config.js. For instance:

// vite.config.js
export default {
  optimizeDeps: {
    exclude: ["dependency-to-exclude"],
    include: ["dependency-to-force-bundle"],
  },
};
Enter fullscreen mode Exit fullscreen mode

This configuration allows you to optimize your project's performance by managing dependencies more effectively.

Developing Libraries with Vite

Vite is also highly efficient for library development, offering quick Hot Module Replacement (HMR) and an easy setup process.

Steps for Library Creation with Vite:

  1. Start a new project using a library-focused template.
  2. Set up your vite.config.js to define build options and output formats:
   export default {
     build: {
       lib: {
         entry: "src/mylib.js",
         name: "MyLib",
         formats: ["es", "umd"],
       },
     },
   };
Enter fullscreen mode Exit fullscreen mode
  1. Benefit from Vite's rapid development feedback loop.
  2. Use vite build --mode lib to prepare your library for release.

Boosting SEO and Performance with SSR and SSG

For SEO and performance, SSR and SSG are essential. Vite natively supports these for frameworks like Vue and React.

Implementing SSR/SSG in Vite:

  • Activate SSR in Vite for server-side rendering, improving load times.
  • Utilize VitePress or external plugins for SSG, taking advantage of static site benefits and SEO improvements.

Expanding Functionality with Vite Plugins

Vite's extensive plugin ecosystem allows for the expansion of its core capabilities, including framework support and CSS preprocessing.

Plugin Installation:

  1. Add the desired plugin via npm.
  2. Include it in your vite.config.js:
   import vue from "@vitejs/plugin-vue";

   // vite.config.js
   export default {
     plugins: [vue()],
   };
Enter fullscreen mode Exit fullscreen mode

Incorporating Pre-Processors

Vite seamlessly supports pre-processors like Sass, Less, and Stylus. Installing Sass, for example, is straightforward:

$ npm install -D sass
Enter fullscreen mode Exit fullscreen mode

Then, refactor your App.jsx to use a new Counter component.

src/components/Counter.jsx

import { useState } from "react";
import styles from "./counter.module.scss";

const Counter = () => {
  const [count, setCount] = useState(0);

  return (
    <div className={styles.counter}>
      <button onClick={() => setCount((count) => count + 1)}>
        count is: {count}
      </button>
    </div>
  );
};

export default Counter;
Enter fullscreen mode Exit fullscreen mode

To use Sass, simply create a .scss file and import it into your component. This also demonstrates the use of CSS modules.

src/components/counter.module.scss

.counter {
  background-color: bisque;
}
Enter fullscreen mode Exit fullscreen mode

And update your App.jsx.

src/App.jsx

import "./App.css";
import Counter from "./components/Counter";

function App() {
  return (
    <div className="App">
      <Counter />
    </div>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

Simplifying Imports with Absolute Paths in Vite

Avoiding complex relative paths is a boon, and Vite makes it easy to use absolute imports via a simple vite.config.js tweak.

vite.config.js

import path from "path";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";

export default defineConfig({
  plugins: [react()],
  resolve: {
    alias: {
      "@": path.resolve(__dirname, "./src"),
    },
  },
});
Enter fullscreen mode Exit fullscreen mode

Also, inform your code editor of this configuration through jsconfig.json or tsconfig.json for TypeScript.

src/App.jsx then becomes simpler:

import "./App.css";
import Counter from "@/components/Counter";

function App() {
  return (
    <div className="App">
      <Counter />
    </div>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

Managing Environmental Variables

Vite handles environmental variables differently, requiring a VITE_ prefix for client-side exposure.

.env

VITE_MESSAGE = "Hello Vite!";
Enter fullscreen mode Exit fullscreen mode

Vite exposes these variables

via import.meta.env rather than process.env.

src/App.jsx

import "./App.css";
import Counter from "./components/Counter.jsx";

function App() {
  return (
    <div className="App">
      <Counter />
      {import.meta.env.VITE_MESSAGE}
    </div>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

Is Vite the Future of Frontend Development?

Vite represents a leap forward in improving the developer experience, scalability, and performance of web applications. Its modern approach positions it as a compelling choice for future projects, underscoring the importance of selecting the right tool for your project's needs and team dynamics.

Top comments (1)

Collapse
 
jamesvanderpump profile image
James Vanderpump

Nice article. Will come in handy when migrating from Next.js page router to Vite.