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-appYou'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-appInstall dependencies:
npm installStart the dev server:
npm run devVite is extremely fast and will start up in milliseconds!