0% found this document useful (0 votes)
18 views1 page

React

React is a JavaScript library developed by Facebook in 2013 that aims to simplify the development of visual interfaces through dividing the UI into reusable components. It has a small API focused on components, JSX, state, and props. While initially difficult to learn, React makes many things easier once mastered and its ecosystem contains useful libraries and tools. To get started, install NodeJS, a code editor, and use npx to create a React app and run it.

Uploaded by

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

React

React is a JavaScript library developed by Facebook in 2013 that aims to simplify the development of visual interfaces through dividing the UI into reusable components. It has a small API focused on components, JSX, state, and props. While initially difficult to learn, React makes many things easier once mastered and its ecosystem contains useful libraries and tools. To get started, install NodeJS, a code editor, and use npx to create a React app and run it.

Uploaded by

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

React JS

Introduction of React
React is a JavaScript library that aims to simplify the development of visual interfaces.

Developed at Facebook and released to the world in 2013, it drives some of the most widely used
apps, powering Facebook and Instagram among countless other applications.

Its primary goal is to make it easy to reason about an interface and its state at any point in time. It
does this by dividing the UI into a collection of components.

You might experience some initial difficulties when learning React. But once it "clicks", I guarantee
it's going to be one of the best experiences you ever have. React makes many things easier, and its
ecosystem is filled with great libraries and tools.

React in itself has a very small API, and you basically need to understand 4 concepts to get started:

 Components
 JSX
 State
 Props

click this link https://thevalleyofcode.com/react/ and read more about react.

React Installation

 Install NodeJS and NPM.


 Install Visual Studio Code (VS Code) / Sublime / Atom / Brackets.
 Install React form terminal.
a. npx create-react-app <project name>
b. npm start

You might also like