To create a new React application , we need to have node.js installed our pc.
▶️ Creating a new React Application :-
> npx create-react-app my-app
create-react-app is the actual command to actually create the project.
or(Modern Approach)
npm create vite@latest my-react-app-learning-react
Followed by checking following check boxes as follows :
◇ Select a framework:
│ React
│
◇ Select a variant:
│ TypeScript
│
◇ Which linter to use?
│ ESLint
│
◇ Install with npm and start now?
│ Yes
August 25, 2026 12