DEV Community

Cover image for A beginners guide to using Vite with React
Arnab Chatterjee for CodeParrot

Posted on • Originally published at codeparrot.ai

A beginners guide to using Vite with React

Introduction

When starting a new React project, choosing the right tools can have a big impact on your workflow. While tools like Webpack have been widely used for years, newer options like Vite offer faster and more efficient alternatives.

Vite, developed by Evan You (the creator of Vue.js), is designed to deliver a lightning-fast development environment. It does this by serving files via native ES modules and using an optimized development server. This results in quicker server startup times and more responsive development.

React, one of the most popular libraries for building user interfaces, works seamlessly with Vite. Its component-based architecture is ideal for developing dynamic single-page applications (SPAs). Here’s why Vite is a great choice for React projects:

  • Instant Server Start: Unlike traditional bundlers, Vite’s development server starts almost instantly by serving files as native ES modules, avoiding bundling during development.

  • Fast Hot Module Replacement (HMR): Vite’s HMR is incredibly fast, allowing you to see changes in your React components nearly instantly, which speeds up development.

  • Optimized Production Builds: For production, Vite uses Rollup to optimize your bundles. It includes features like automatic code splitting, which improves your app's load time.

  • Modern Development Support: Vite works well with modern JavaScript tools like TypeScript, JSX, and CSS preprocessors such as Sass, providing a cutting-edge development experience out of the box.

In this blog, we’ll guide you through setting up a React project with Vite, explore the project’s structure, and show you how to work with assets and deploy your app. By the end, you’ll see how Vite can improve your React development experience.

What is Vite?

Vite is a modern build tool designed for speed and efficiency, particularly when working with JavaScript frameworks like React. Developed by Evan You, the creator of Vue.js, Vite stands out due to its ability to deliver a fast and streamlined development experience.

Key Features of Vite

  1. Instant Server Start: Vite serves files via native ES modules, allowing the development server to start almost instantly, even for large projects.

  2. Fast Hot Module Replacement (HMR): Vite’s HMR is extremely quick, enabling near-instant updates to your React components as you develop.

  3. Optimized Builds: Vite uses Rollup for production builds, ensuring efficient bundling with features like code splitting and tree-shaking.

  4. Modern JavaScript Support: Vite comes with built-in support for the latest JavaScript features, including TypeScript, JSX, and CSS preprocessors like Sass.

Vite vs. Webpack

While Webpack has been a popular choice for years, it often requires complex configurations and can be slower during development due to its bundling process. In contrast, Vite simplifies the setup process and skips bundling during development, leading to faster server start times and HMR. Vite’s production builds are also highly optimized, much like Webpack’s, but with a more straightforward configuration.

Why Use Vite with React?

  1. Speed: Vite’s quick server start and HMR make it easier to develop React applications without waiting for long bundling processes.

  2. Simplicity: Vite’s easy-to-use setup lets you focus on building your React components rather than configuring build tools.

  3. Efficiency: Vite ensures that your React app is not only quick to develop but also optimized for production with minimal effort.

Vite offers a more modern and efficient alternative to traditional bundlers like Webpack, making it a great fit for React projects that prioritize speed and simplicity.

Setting Up the Development Environment

Before diving into Vite with React, you'll need to ensure that you have Node.js and npm installed on your system. If you don't have them installed, follow the steps below to get started.

Installing Node.js and npm

To install Node.js and npm, visit the Node.js official website and download the latest stable version. Once installed, you can verify the installation by running the following commands in your terminal:

node -v
npm -v
Enter fullscreen mode Exit fullscreen mode

These commands should display the installed versions of Node.js and npm, confirming that they are set up correctly.

Initializing a New Vite Project

With Node.js and npm ready, you can now create a new React project using Vite. Vite provides a straightforward command to set up a new project quickly. Open your terminal and run the following commands:

npm create vite@latest my-react-app --template react
cd my-react-app
npm install
Enter fullscreen mode Exit fullscreen mode
  • npm create vite@latest my-react-app --template react: This command initializes a new Vite project with a React template. Replace my-react-app with your desired project name.
  • cd my-react-app: Navigate into your newly created project directory.
  • npm install: Install the necessary dependencies for your React project.

Running the Development Server

Once your project is set up and dependencies are installed, you can start the development server. Vite's server is fast, and you'll see how quickly it starts:

npm run  dev
Enter fullscreen mode Exit fullscreen mode

Running this command will start the Vite development server and open your new React application in your default web browser. The application will automatically reload as you make changes to the code, thanks to Vite's fast Hot Module Replacement (HMR) feature.

Running this command will start the Vite development server and open your new React application in your default web browser. The application will automatically reload as you make changes to the code, thanks to Vite's fast Hot Module Replacement (HMR) feature.

Understanding the Project Structure

Vite sets up a simple and organized project structure. Here's a quick overview of the key files and folders:

  • index.html: The entry point of your application. Vite injects your scripts into this file.
  • src/main.jsx: The main JavaScript file where your React application starts. It typically renders the root component (App.jsx) into the DOM.
  • src/App.jsx: The main React component of your application. You can start building your UI here.
  • vite.config.js: Vite's configuration file where you can customize your build process, add plugins, and more.

This structure is designed to be minimal yet powerful, giving you a solid foundation to start building your React application without unnecessary complexity. You can easily expand and customize the structure as your project grows.

Understanding the Project Structure

When you initialize a React project using Vite, it creates a clean and minimal project structure. This structure is designed to help you get started quickly without the overhead of unnecessary files or complex configurations. Let’s break down the key files and folders created by Vite to help you understand the setup.

my-app
├── node_modules
├── src
├── .eslintrc.cjs
├── index.html
├── README.md
├── package.json
└── vite.config.js
Enter fullscreen mode Exit fullscreen mode

Breakdown of Key Files and Folders

  1. index.html: This file is the entry point of your application and is located in the root directory. Unlike traditional bundlers, Vite directly serves this HTML file during development. It’s where your React application is mounted, and Vite injects the necessary scripts to load the app.

  2. src/: The src folder contains all your application code.

  3. main.jsx: This is the main entry point for your React app. It imports React, renders the root component (App.jsx), and attaches it to the #root element in the index.html file.

  4. App.jsx: This is the root component of your application, where you'll start building your UI. You can modify this file to add more components as your project grows.

  5. vite.config.js: This file contains Vite’s configuration. It allows you to customize Vite’s behavior, add plugins, or modify the build process, but for most small projects, you may not need to touch this file.

Key Files

  1. index.html : The HTML file where your React app is injected. It contains a single <div> element with the id="root" where the React app will be mounted.
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Vite React App</title>
  </head>
  <body>
    <div id="root"></div>
    <script type="module" src="/src/main.jsx"></script>
  </body>
</html>
Enter fullscreen mode Exit fullscreen mode
  1. src/main.jsx The main JavaScript entry point for your React application. It renders the App component into the #root div of the index.html.
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';

ReactDOM.createRoot(document.getElementById('root')).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);
Enter fullscreen mode Exit fullscreen mode
  1. src/App.jsx : The main component of your React app. This is where you'll start building your UI. By default, it includes a simple React component, but you can modify it to fit your needs.
import React from 'react';

function App() {
  return (
    <div>
      <h1>Welcome to Vite + React!</h1>
    </div>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

Modifying App.jsx to Create a Simple React Component

Let’s modify the default App.jsx component to create a simple React component that displays a list of items:

import React from 'react';

function App() {
  const items = ['Item 1', 'Item 2', 'Item 3'];

  return (
    <div>
      <h1>Simple List with Vite and React</h1>
      <ul>
        {items.map((item, index) => (
          <li key={index}>{item}</li>
        ))}
      </ul>
    </div>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

In this example:

  • We define an array items with a few sample items.
  • We use the map() function to iterate over the items array and render each item as a list item (<li>).

This project structure offers flexibility and simplicity, allowing you to grow your application easily as you continue development.

Working with Vite in a React Project

Vite simplifies the process of working with assets, styles, and offers fast feedback during development through Hot Module Replacement (HMR). Let’s walk through how to handle these features in your Vite-React project.

Importing and Using Assets (Images, Styles)

Vite allows you to easily import assets such as images or CSS files directly into your React components, with the benefit of bundling them efficiently during the build.

import React from 'react';
import logo from './assets/logo.png'; // Importing an image

function App() {
  return (
    <div>
      <img src={logo} alt="App Logo" />
      <h1>Welcome to Vite React App!</h1>
    </div>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

In this example, Vite processes the logo.png image file and ensures it’s bundled efficiently when you build the project. During development, the image is served directly without bundling, contributing to faster reload times.

import React from 'react';
import './App.css'; // Importing a CSS file

function App() {
  return (
    <div className="app-container">
      <h1>Welcome to Vite React App!</h1>
    </div>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

How Vite Handles Hot Module Replacement (HMR)

One of Vite’s standout features is its fast Hot Module Replacement (HMR). HMR allows you to see changes in your application instantly without a full page reload. When you modify a file, Vite only updates the specific module that was changed, maintaining the application’s state.

For example, if you update a React component:

import React from 'react';

function App() {
  return (
    <div>
      <h1>Welcome to the updated Vite React App!</h1> {/* Change the text */}
    </div>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

Upon saving the file, Vite’s HMR immediately updates the UI without a full page reload. This speeds up the development process significantly, especially when you are working on UI components or tweaking styles.

Troubleshooting Common Issues

While Vite generally offers a smooth development experience, you might still run into a few common issues when using it with React. Here are some of those issues and how to fix them, along with tips for optimizing performance and build times.

  1. Error: "Failed to resolve module"

    This is a common issue that occurs when Vite cannot resolve a module you’re trying to import, especially when dealing with third-party libraries or incorrect paths.
    Solution:

  • Double-check the import paths in your code. Ensure you are importing the correct file or module.
  • For third-party libraries, try reinstalling the dependencies:
  npm install
Enter fullscreen mode Exit fullscreen mode
  • If the issue persists, clear Vite’s cache and restart the server

    rm -rf node_modules/.vite
    npm run dev
    
  1. Error: "React Refresh failed" Vite uses React Fast Refresh to enable Hot Module Replacement (HMR). Sometimes, this can fail, particularly when the React version is mismatched or there’s a configuration issue.

Solution:

  • Make sure that you're using a supported version of React (17.x or later).

  • Ensure that @vitejs/plugin-react is correctly installed and added to your vite.config.js file:

npm install @vitejs/plugin-react --save-dev
Enter fullscreen mode Exit fullscreen mode

In vite.config.js:

import react from '@vitejs/plugin-react';

export default {
  plugins: [react()],
};
Enter fullscreen mode Exit fullscreen mode
  • Restart your Vite development server after applying these fixes.
  1. Assets Not Loading After

    If assets like images, fonts, or other static files are not loading properly after building the app, it’s often due to incorrect asset paths.

Solution:

  • Make sure that you're using relative paths for your assets. For example, use ./assets/logo.png instead of /assets/logo.png.
  • Check yourvite.config.js for the correct base path. If your app is deployed in a subdirectory, you may need to set the base option:

    export default {
    base: '/subdirectory/',
    };
    

Following these troubleshooting steps should help you resolve common issues and ensure your Vite + React project runs smoothly.

Conclusion

In this guide, we walked through setting up a React project with Vite, explored its project structure, imported assets, and styles, and highlighted how Vite's fast Hot Module Replacement (HMR) enhances development. You’ve also learned some common troubleshooting tips and optimizations for build performance.

Vite’s speed and simplicity make it a powerful tool, whether you’re working on small projects or scaling up to larger ones. As you continue to explore Vite, dive into its advanced features, such as plugins and environment-specific configurations, to make your development experience even better.

Top comments (1)

Collapse
 
andrewbaisden profile image
Andrew Baisden

I really like Vite. I wish it could have more exposure on the React website. Currently, it's not mentioned in the main sections it's only mentioned in "Can I use React without a framework?"