TIDE
Frameworks

Vite

How to install and run Vite in TIDE

Vite

Vite is a fast build tool that provides a faster and leaner development experience for modern web projects. It's often used with React, Vue, Svelte, and vanilla JavaScript.

Prerequisites

Ensure you have Node.js and NPM installed. Check out the Node.js installation guide for instructions.

Installation

Create a new Vite project directly in TIDE's terminal:

npm create vite@latest my-vite-app

You'll be prompted to select a framework and a variant (e.g., React + TypeScript).

Running the Development Server

Navigate into your project:

cd my-vite-app

Install dependencies:

npm install

Start the dev server:

npm run dev

Vite is extremely fast and will start up in milliseconds!

On this page