React js tutorial

C++
//With node and npm already installed for basic start

npx create-react-app my-app-name

// if you want to use npm 

npx create-react-app my-app-name --npm

//if you want to use typescript 

npx create-react-app my-app-name --template typescript

yarn start // app will be hosted on localhost:3000

/* start making changes at ./my-app-name/src/App.js
	React documentation: https://reactjs.org/docs/hello-world.html
*/The website below has a great tutorial for beginners.
It explains all the basics you need to know without
overloading you with complexities.
Naturally you can advance to these complexities once
you have the base knowledge.#create your project react
npx create-react-app my-app

#open your folder app
cd my-app

#running your apps
yarn start
#or
npm startReactDOM.render(  
    <Hello />,   
    document.getElementById("root")  
);
npx create-react-app my-app
cd my-app
cd src

# If you're using a Mac or Linux:
rm -f *

# Or, if you're on Windows:
del *

# Then, switch back to the project folder
cd ..Namaste
Angular is far more better ___GTFO
Source

Also in C++: