AWS Security Model

Create first React App

 Install React in our system

                                  

Step 1:

install node in our system using below link 

Install Node (install any Recommended  version)



Step 2:

        download and install visual studio code

Step 3:

Check node install properly or not using below command 

open cmd and enter node -v


if it's showing node version installed properly

Step 4:

install React using below command 

        npm install create-react-app -g

Note: -g -> represent install globally 

        Go to start window =>write cmd and run npm install create-react-app -g


Step 5:

Create React app using below command

        create-react-app <Name of your project>

Step 6:

        follow below steps to open project 

         cd  <Name of your project>

Step 7:

        run code . to open code in visual code 

visual code editor

Step 8:

        run npm start lonch react app


Step 9: 
        open link in browser

   
Step 10:   


Comments