What is ViteJS?
In simple terms, it is a web builder that focuses on speed
Compared to the traditional way of using create-react-app that uses webpack, this has much faster build time
How to Install?
npm create @vitejs/app
it will prompt you on the settings that you want, or if you want to use default settings, use this:
npm init vite@latest [app name] -- --template react
cd [app name], then install the dependecies:
npm install
time to run the project by typing:
npm run dev
Top comments (0)