How To Install React

ยท

1 min read

How To Install React

Now that you know what you need to start learning react. You need to install react to be able to use it.

It is actually very simple to install react. Just 3 steps

First open up your terminal and type

npx create-react-app my-app

The my-app is the name of your project and it can be any name. But it should not contain capital letter. The above code will install some dependencies that react needs to work properly.

After that has finish

cd my-app
npm start

That's it. Simple right๐Ÿ˜„๐Ÿ˜„.

I will stop my react series here for a while. Gotta learn more. But more posts coming up.

ย