Articles

Scaffolding Frontend Web Apps React, Vue With Vite

Scaffolding Frontend Web Apps React, Vue With Vite

Vite is a popular build tool for modern web apps as it provides faster development experience and comes with many rich features such as a dev server, HMR (hot module replacement), build command, plugins, SSR and more. In this snippet we will see how to scaffold and generate frontend apps using Vite commands.

 

 

Although you can create frontend web apps like Vue or React using dedicated commands for each framework, for example for Vue you can use Vue CLI. However if you are using Vite you can achieve this easily using vite commands.

Before starting make sure that your node version 18+ or 20+ for Vite to work.

Create a Vite project:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm create vite@latest
npm create vite@latest
npm create vite@latest

You will be promoted by some questions like Project name, framework, and variant. Type your project name and select the framework, here you will see many frameworks React, Vue or whatever framework you work with. The variant indicates whether you will work with vanilla javascript or typescript.

vite_scaffolding

 

 

Next cd into your project

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
cd <Project directory>
cd <Project directory>
cd <Project directory>

Complete installation with:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install
npm install
npm install

Then launch the project with:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm run dev
npm run dev
npm run dev

That’s it.

 

Also you can create the project and select the framework using the –template flag like so:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm create vite@latest vue-app -- --template vue
npm create vite@latest vue-app -- --template vue
npm create vite@latest vue-app -- --template vue

Vue with typescript

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm create vite@latest vue-app -- --template vue-ts
npm create vite@latest vue-app -- --template vue-ts
npm create vite@latest vue-app -- --template vue-ts

React

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm create vite@latest react-app -- --template react
npm create vite@latest react-app -- --template react
npm create vite@latest react-app -- --template react
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm create vite@latest react-app -- --template react-ts
npm create vite@latest react-app -- --template react-ts
npm create vite@latest react-app -- --template react-ts

For vanilla JS

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm create vite@latest js-app -- --template vanilla
npm create vite@latest js-app -- --template vanilla
npm create vite@latest js-app -- --template vanilla
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm create vite@latest js-app -- --template vanilla-ts
npm create vite@latest js-app -- --template vanilla-ts
npm create vite@latest js-app -- --template vanilla-ts

 

0 0 votes
Article Rating

What's your reaction?

Excited
0
Happy
0
Not Sure
0
Confused
0

You may also like

Subscribe
Notify of
guest


1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
vishnu
vishnu
1 month ago

Keep up the great work! Thank you so much for sharing a great post.