Home Web Front-end Front-end Q&A When did the react framework come out?

When did the react framework come out?

Dec 05, 2022 pm 05:36 PM
react

The react framework came out in 2013; React originated from Facebook’s internal project and was open sourced in May 2013. React is a JavaScript library used to build user interfaces, mainly used to build UI; users can pass various types of parameters in React, such as declaration codes to help you render the UI, static HTML DOM elements, or Pass dynamic variables and even interactive application components.

When did the react framework come out?

#The operating environment of this tutorial: Windows7 system, react18 version, Dell G3 computer.

1. The origin and development of React

React is a JavaScript library used to build user interfaces. It originated from Facebook’s internal project because The company was dissatisfied with all the JavaScript MVC frameworks on the market, so it decided to write its own to build the Instagram website. After making it, I found that this set of things is very useful, so it was open sourced in May 2013.

2. The starting point of React

HTML-based front-end interface development is becoming more and more complex, and its essential problems can basically be summarized It focuses on how to efficiently reflect dynamic data from the server or user input to complex user interfaces. The React framework from Fackbook is a solution completely oriented to this problem. According to the official website description, its starting point is: used to develop large applications with data that changes over time (Building large applications with data that changes over time). Compared with traditional front-end development, React has opened up a quite alternative approach to achieve high-performance and efficient development of front-end interfaces.

React is mainly used to build UI. You can pass various types of parameters in React, such as declaration codes to help you render UI, static HTML DOM elements, dynamic variables, and even interactive application components.

3. The relationship between Recat and traditional MVC

Lightweight view layer library! A JavaScript library for building user interfaces

React is not a complete MVC framework. It can be considered as the (view) layer in MVC at most. Even React does not fully recognize the MVC development model; React is a library for building page UI. It can be simply understood that React divides the interface into independent small blocks. Each block is a component. These components can be combined and nested to become our page

4. Reflection of React’s high performance: Virtual DOM

Principle: During our development process, we need to reflect unpredictable data to the UI in real time. At this time, The DOM needs to be manipulated. However, frequent or complex manipulation of the DOM will cause many performance problems. ——How to perform high-performance complex DOM operations is usually an important indicator of a front-end developer’s skills.

React introduces the virtual DOM (virtual DOM) mechanism for this: a set of DOM API is implemented on the browser side using javascript. When developing based on React, all DOM construction is performed through virtual DOM. Whenever the data changes, React will re-render the entire DOM tree. Then React compares the current entire DOM tree with the previous DOM tree to obtain the DOM structure. difference, then only the parts that need to be changed do the actual browser DOM update. Moreover, React can process the refresh of the virtual DOM in batches. Two data changes in an event loop are merged. For example, if you continuously change the node content from A-B, B-A, React will think that A becomes B, and then again. There is no change in the UI from B to A, and if controlled manually, this logic is usually extremely complex

React Fiber:

Released after React16 A react core algorithm, React Fiber is a re-implementation of the core algorithm (official website statement). The diff algorithm was used before

In the previous React, the update process was synchronous, which may cause performance problems.

When React decides to load or update the component tree, it will do a lot of things, such as calling the life cycle function of each component, calculating and comparing the Virtual DOM, and finally updating the DOM tree. This entire process is performed simultaneously. , that is to say, as long as a loading or update process starts, it will not be interrupted in the middle. Because of the single-threaded nature of JavaScript, if the component tree is very large and each synchronization task takes too long, lags will occur.

React Fiber’s method is actually very simple – sharding. Divide a long task into many small pieces. The operation time of each small piece is very short. Although the total time is still very long, after each small piece is executed, other tasks are given a chance to execute, so that the only thread will not will be exclusive, and other tasks will still have the opportunity to run.

5. Features and advantages of React

1. Virtual DOM

We operated before The DOM method is through document.getElementById(). This process is actually to first read the dom structure of the html, convert the structure into variables, and then perform operations

Reactjs defines a set of dom models in the form of variables. All operations and conversions are directly in the variables. This reduces the need to operate the real dom, and the performance is really high. What is the essential difference from the mainstream MVC framework, and is not the same as dom Dealing

2. Component system

The core idea of ​​react is that any area or element on the page can be regarded as a component

So what are components?

Component refers to an aggregate that contains html, css, js, and image elements at the same time

3. One-way data flow

In fact, reactjs The core content is data binding. The so-called data binding means that as long as some server-side data is bound to the front-end page, the developer only needs to focus on realizing the business.

4. JSX syntax

In vue, we use the render function to build the dom structure of the component with higher performance, because the process of finding and compiling the template is omitted, but the code is readable when using createElement to create the structure in render. The performance is low and the load is relatively high. At this time, you can use JSX syntax to create dom in render, which solves this problem, but the premise is that you need to use tools to compile jsx

[Related recommendations: Redis Video TutorialProgramming video

The above is the detailed content of When did the react framework come out?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to build a real-time chat app with React and WebSocket How to build a real-time chat app with React and WebSocket Sep 26, 2023 pm 07:46 PM

How to build a real-time chat application using React and WebSocket Introduction: With the rapid development of the Internet, real-time communication has attracted more and more attention. Live chat apps have become an integral part of modern social and work life. This article will introduce how to build a simple real-time chat application using React and WebSocket, and provide specific code examples. 1. Technical preparation Before starting to build a real-time chat application, we need to prepare the following technologies and tools: React: one for building

Guide to React front-end and back-end separation: How to achieve decoupling and independent deployment of front-end and back-end Guide to React front-end and back-end separation: How to achieve decoupling and independent deployment of front-end and back-end Sep 28, 2023 am 10:48 AM

React front-end and back-end separation guide: How to achieve front-end and back-end decoupling and independent deployment, specific code examples are required In today's web development environment, front-end and back-end separation has become a trend. By separating front-end and back-end code, development work can be made more flexible, efficient, and facilitate team collaboration. This article will introduce how to use React to achieve front-end and back-end separation, thereby achieving the goals of decoupling and independent deployment. First, we need to understand what front-end and back-end separation is. In the traditional web development model, the front-end and back-end are coupled

How to build simple and easy-to-use web applications with React and Flask How to build simple and easy-to-use web applications with React and Flask Sep 27, 2023 am 11:09 AM

How to use React and Flask to build simple and easy-to-use web applications Introduction: With the development of the Internet, the needs of web applications are becoming more and more diverse and complex. In order to meet user requirements for ease of use and performance, it is becoming increasingly important to use modern technology stacks to build network applications. React and Flask are two very popular frameworks for front-end and back-end development, and they work well together to build simple and easy-to-use web applications. This article will detail how to leverage React and Flask

How to build a reliable messaging app with React and RabbitMQ How to build a reliable messaging app with React and RabbitMQ Sep 28, 2023 pm 08:24 PM

How to build a reliable messaging application with React and RabbitMQ Introduction: Modern applications need to support reliable messaging to achieve features such as real-time updates and data synchronization. React is a popular JavaScript library for building user interfaces, while RabbitMQ is a reliable messaging middleware. This article will introduce how to combine React and RabbitMQ to build a reliable messaging application, and provide specific code examples. RabbitMQ overview:

React Router User Guide: How to implement front-end routing control React Router User Guide: How to implement front-end routing control Sep 29, 2023 pm 05:45 PM

ReactRouter User Guide: How to Implement Front-End Routing Control With the popularity of single-page applications, front-end routing has become an important part that cannot be ignored. As the most popular routing library in the React ecosystem, ReactRouter provides rich functions and easy-to-use APIs, making the implementation of front-end routing very simple and flexible. This article will introduce how to use ReactRouter and provide some specific code examples. To install ReactRouter first, we need

React responsive design guide: How to achieve adaptive front-end layout effects React responsive design guide: How to achieve adaptive front-end layout effects Sep 26, 2023 am 11:34 AM

React Responsive Design Guide: How to Achieve Adaptive Front-end Layout Effects With the popularity of mobile devices and the increasing user demand for multi-screen experiences, responsive design has become one of the important considerations in modern front-end development. React, as one of the most popular front-end frameworks at present, provides a wealth of tools and components to help developers achieve adaptive layout effects. This article will share some guidelines and tips on implementing responsive design using React, and provide specific code examples for reference. Fle using React

React code debugging guide: How to quickly locate and solve front-end bugs React code debugging guide: How to quickly locate and solve front-end bugs Sep 26, 2023 pm 02:25 PM

React code debugging guide: How to quickly locate and resolve front-end bugs Introduction: When developing React applications, you often encounter a variety of bugs that may crash the application or cause incorrect behavior. Therefore, mastering debugging skills is an essential ability for every React developer. This article will introduce some practical techniques for locating and solving front-end bugs, and provide specific code examples to help readers quickly locate and solve bugs in React applications. 1. Selection of debugging tools: In Re

How to build a fast data analysis application using React and Google BigQuery How to build a fast data analysis application using React and Google BigQuery Sep 26, 2023 pm 06:12 PM

How to use React and Google BigQuery to build fast data analysis applications Introduction: In today's era of information explosion, data analysis has become an indispensable link in various industries. Among them, building fast and efficient data analysis applications has become the goal pursued by many companies and individuals. This article will introduce how to use React and Google BigQuery to build a fast data analysis application, and provide detailed code examples. 1. Overview React is a tool for building

See all articles