How create a new project using React + Vite + Bootstrap with TypeScript
Learn to install React, Vite, Bootstrap In this article you will learn how to install a new project React using Vite and configuring Bootstrap on the latest version. What is vite? Vite is a high-performance asynchronous and event-driven framework for building web applications in the Node.js runtime. It provides a fast development experience by leveraging modern JavaScript features such as ES modules and native browser support for dynamic imports. Vite is known for its quick startup time and efficient hot module replacement (HMR) capability, making it an attractive choice for developers looking to build modern web applications. What I need? For use React you will need have installed node JS. Proccess 1.- Create a new folder If you use Linux follow this step but If you don't use Linux you can omit this step. Create a new folder with write permision example: sudo mkdir /home/benjamin/react-demo/ Give write permission to folder sudo chmod -R 777 /home/benjamin/