0% found this document useful (0 votes)
36 views

01stJune@9AM (Installation)

Uploaded by

king4u9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views

01stJune@9AM (Installation)

Uploaded by

king4u9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

ReactJS Environmental Setup

---------------------------

1) download and install NodeJS

- React Installation Depending on Node Server.

- "npm" is the tool available in NodeJS, helps to install the React.

- "npm" stands for node packaging manager.

website : https://nodejs.org/en/

file : node-v14.4.0-x64.msi

2) install yarn tool

- "yarn" tool provided by facebook

- "yarn" tool used to download the libraries.

- we will install yarn tool by using command.

> npm install -g yarn@latest

- "npm" stands for node packaging manager

- "-g" stands for global installation

3) install "create-react-app" tool

- "create-react-app" tool used to create the "react applications"

- "create-react-app" tool provided by facebook

- we will install "create-react-app" tool by using npm.

> npm install -g create-react-app

steps to create the react applications


--------------------------------------

1) create the directory

Ex.
Demo

2) create the react application

> create-react-app first-app

- where "first-app" is the react application


3) switch to react application

> cd first-app

4) execute the react application

> yarn start

- by default react application running on port no.3000


+6590257613

React
-----
- React is the UI library.

- React library given by facebook.

- React acting as UI Layer in web applications.

- ReactJS can interact with the Angular,VueJS,.....

- we will develop ReactJS Applications by using JSX.

- "JSX" stands for JavaScript + XML.

- in general, browsers won't understand XML.

- so, we must convert XML to Equalent JavaScript.

- "babel" is the tool used to convert the XML to Equalent JavaScript.

- "React" Applications are faster applications, because of virtual DOM.

- React simplifies the Complex UI with the help of Components.

- React Applications are Component Based Applications.

- React Components are Reusable.

You might also like