Make React App in Your Own Computer

Arya
RefugeesCode Melbourne
2 min readAug 13, 2022

this week i worked on React and also Github.

i share a little with you here.

if you wanna make React App in your own Computer instead using sandbox.

the point when you use your own react app is your code is more fluent and sometimes in sandbox some kind of bugs happened and when you use your VS.code and your own browser you are going to skip all that problem.

So let’s start:

1- Open your terminal

2- Open your browser and go to Nodejs.org

3- See whats the new version of it.

4- Try to use Recommended one because you are sure it has tested already by different people.

5- Now in your terminal you type: node --version

6- if it doesn’t show you anything that means you don’t have any version of nodes in your computer, and if you see your version is older than what you see on website, in both situation you have to install the node in your computer.

7- for installation you have to go to reactjs.org and copy the npx and paste it in your terminal and inter. `npx create-react-app my-app

8- Now go inside to My-app through your terminal.

9- Now type npm start.

all set up. also you can run your codes on Github repository, change your files, add the changes and commit them. we will go through it.

--

--