SlideShare a Scribd company logo
a J a v a S c r i p t l i b r a r y f o r b u i l d i n g U I
REACT JS
created by Facebook / Instagram
Song YANG
KEY CONCEPTS
▫︎Just the UI
▫︎Re-render everything on every change
▫︎Virtual DOM
▫︎Synthetic Events
▫︎Component-centric view layer
2
REACT JS is not a MVC framework
JUST UI
3
ONLY CARES ABOUT THE UI
▫︎Routers
▫︎Models
▫︎Bindings
▫︎Observers
▫︎Templates
4
BINDINGS / OBSERVERS
▫︎Must mutate Model to propagate changes to View
▫︎Each mutation can trigger other observers (Run Loop /
Digest Loop)
▫︎Can't use immutable data structures as your model
▫︎Two-way bindings open Pandora’s box
▫︎No easy way of knowing how far-reaching a change in
the reverse direction is going to be
5
6
RE-RENDER THE ENTIRE APP
ON EVERY CHANGE
7
8
▫︎No observers
▫︎No magical data binding
▫︎No model dirty checking
▫︎No $apply() or $digest()
Makes things simple to reason about
Re-render
Virtual DOM
9
VIRTUAL DOM
10
▫︎in-memory data structure (fast)
▫︎JavaScript representation of DOM
nodes, totally separate from the
browser’s slow JavaScript/C++ DOM API
▫︎Makes server-side rendering possible
▫︎Most important…
11
VIRTUAL DOM
DIFFING
12
▫︎Build new Virtual DOM tree
▫︎Diff with old one
▫︎Compute minimal set of changes
▫︎Put them in a queue
▫︎Batch render all changes to browser
Treat the DOM like a GPU!
ON EVERY UPDATE
13
Render from Data to Virtual DOM is fast
No string concatenation
Synthetic Events
14
15
▫︎React implements it's own event system
▫︎a cross-browser wrapper around the browser's
native event
▫︎same interface as the browser's native event
Treat the DOM like a GPU!
Synthetic Events
16
Talk is Cheap, show you the code
17
JSX is a JavaScript syntax extension
that looks similar to XML. You can use
a simple JSX syntactic transform with
React.
JSX
18
19
https://github.com/owenyang0/react-starter
git clone
20
1 Rendering
21
2 Components
22
23
3 Props
24
25
4 State
26
27
5 Composition
28
29
Thanks

More Related Content

PPTX
Iniciar servicio linux
PDF
Infinum Android Talks #17 - A quest for WebSockets by Zeljko Plesac
PPTX
โครงงานคอมพิวเตอร์ ใบงานที่
PDF
SongYang-cv-frontend-15July
PDF
Webpack101
PDF
2024 Trend Updates: What Really Works In SEO & Content Marketing
PDF
Storytelling For The Web: Integrate Storytelling in your Design Process
Iniciar servicio linux
Infinum Android Talks #17 - A quest for WebSockets by Zeljko Plesac
โครงงานคอมพิวเตอร์ ใบงานที่
SongYang-cv-frontend-15July
Webpack101
2024 Trend Updates: What Really Works In SEO & Content Marketing
Storytelling For The Web: Integrate Storytelling in your Design Process

Recently uploaded (20)

PPTX
"Array and Linked List in Data Structures with Types, Operations, Implementat...
PPTX
Module 8- Technological and Communication Skills.pptx
PPTX
Nature of X-rays, X- Ray Equipment, Fluoroscopy
PDF
Soil Improvement Techniques Note - Rabbi
PPTX
Management Information system : MIS-e-Business Systems.pptx
PPTX
CURRICULAM DESIGN engineering FOR CSE 2025.pptx
PDF
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
PPTX
Feature types and data preprocessing steps
PDF
Influence of Green Infrastructure on Residents’ Endorsement of the New Ecolog...
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
PPTX
Graph Data Structures with Types, Traversals, Connectivity, and Real-Life App...
PDF
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
PDF
Categorization of Factors Affecting Classification Algorithms Selection
PPTX
AUTOMOTIVE ENGINE MANAGEMENT (MECHATRONICS).pptx
PDF
BIO-INSPIRED ARCHITECTURE FOR PARSIMONIOUS CONVERSATIONAL INTELLIGENCE : THE ...
PPTX
Software Engineering and software moduleing
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PDF
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
PPTX
Fundamentals of Mechanical Engineering.pptx
"Array and Linked List in Data Structures with Types, Operations, Implementat...
Module 8- Technological and Communication Skills.pptx
Nature of X-rays, X- Ray Equipment, Fluoroscopy
Soil Improvement Techniques Note - Rabbi
Management Information system : MIS-e-Business Systems.pptx
CURRICULAM DESIGN engineering FOR CSE 2025.pptx
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
Feature types and data preprocessing steps
Influence of Green Infrastructure on Residents’ Endorsement of the New Ecolog...
R24 SURVEYING LAB MANUAL for civil enggi
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
Graph Data Structures with Types, Traversals, Connectivity, and Real-Life App...
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
Categorization of Factors Affecting Classification Algorithms Selection
AUTOMOTIVE ENGINE MANAGEMENT (MECHATRONICS).pptx
BIO-INSPIRED ARCHITECTURE FOR PARSIMONIOUS CONVERSATIONAL INTELLIGENCE : THE ...
Software Engineering and software moduleing
Automation-in-Manufacturing-Chapter-Introduction.pdf
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
Fundamentals of Mechanical Engineering.pptx
Ad
Ad

React js101