DEV Community

Kavya S
Kavya S

Posted on

React,CRA,Vite

What is React?

  • React is a javascript library to build user interface and single page application
  • It allows developers to create large web applications that can change data,without refreshing the page

What is CRA?

  • CRA stands for Create React App
  • It provides a pre-configured environment with default setup, including Webpack, Babel, and ESLint.
  • This allows developers to focus on writing code rather than dealing with complex build configurations.

What is Vite?

  • Vite is a frontend tool that is used for building fast and optimized web applications.
  • It uses a modern build system and a fast development server to provide a streamlined and efficient development experience.
  • It features rapid hot module replacement (HMR), so you can instantly see updates as you change your code.

Top comments (0)