React for Beginners
This course will teach you React from Scratch Node Version 18.X.X Code Editor VSCODE Prerequisite: HTML, CSS, JavaScript So Let's Start 1. Using Prettier Extension in Vs Code (code formatting) Setting up : Format on Save, File>Preferences>Setting>Search(format on save)>check 2. There are two ways to create react app a) Using Create-React-App(CRA) : npx create-react-app app_name b) Using Vite : npm create vite@latest or npm create vite@4.1.0 I'm Using Vite tool to create a react project: -> npm create vite@4.1.0 -> hit y -> type app name and select framework and language (react-app, React, TypeScript) -> npm install -> To lunch the project: npm run dev dsf