Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
React Native under the hood
Search
HyunWoo Lee
August 14, 2024
Programming
0
130
React Native under the hood
HYPER-APP 2024에서 진행한 React Native under the hood의 Speaker Deck입니다.
HyunWoo Lee
August 14, 2024
Tweet
Share
More Decks by HyunWoo Lee
See All by HyunWoo Lee
How Android Uses Data Structures Behind The Scenes
l2hyunwoo
1
580
Understanding Kotlin Multiplatform (Busan)
l2hyunwoo
0
48
Understanding Kotlin Multiplatform
l2hyunwoo
0
300
파급효과: From AI to Android Development
l2hyunwoo
0
250
선언형 UI에서의 상태관리
l2hyunwoo
0
550
선언형 UI를 학습할 때 알아둬야하는 키워드들
l2hyunwoo
0
460
Essential concepts to know when learning Declarative UI
l2hyunwoo
2
1.5k
유연한 Composable 설계
l2hyunwoo
0
710
KotlinConf 2024 Global in South Korea Keynote
l2hyunwoo
0
130
Other Decks in Programming
See All in Programming
アメ車でサンノゼを走ってきたよ!
s_shimotori
0
130
ABEMAモバイルアプリが Kotlin Multiplatformと歩んだ5年 ─ 導入と運用、成功と課題 / iOSDC 2025
akkyie
0
320
開発者への寄付をアプリ内課金として実装する時の気の使いどころ
ski
0
340
PostgreSQLで手軽にDuckDBを使う!DuckDB&pg_duckdb入門/osk2025-duckdb
takahashiikki
1
240
GitHub Actions × AWS OIDC連携の仕組みと経緯を理解する
ota1022
0
240
私はどうやって技術力を上げたのか
yusukebe
43
17k
Conquering Massive Traffic Spikes in Ruby Applications with Pitchfork
riseshia
0
150
階層構造を表現するデータ構造とリファクタリング 〜1年で10倍成長したプロダクトの変化と課題〜
yuhisatoxxx
3
900
止められない医療アプリ、そっと Swift 6 へ
medley
1
110
CI_CD「健康診断」のススメ。現場でのボトルネック特定から、健康診断を通じた組織的な改善手法
teamlab
PRO
0
170
AIで開発生産性を上げる個人とチームの取り組み
taniigo
0
130
『毎日の移動』を支えるGoバックエンド内製開発
yutautsugi
2
150
Featured
See All Featured
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
How GitHub (no longer) Works
holman
315
140k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.7k
How to Ace a Technical Interview
jacobian
280
23k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.7k
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.7k
Optimizing for Happiness
mojombo
379
70k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
610
GraphQLとの向き合い方2022年版
quramy
49
14k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
850
Speed Design
sergeychernyshev
32
1.1k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
127
53k
Transcript
이현우, Viva Republica (Toss) React Native Under The Hood
HyunWoo Lee • Android(React Native) Developer, Toss • Organizer, Kotlin
User Groups • Organizer, GDG Songdo Github: https://github.com/l 2 hyunwoo LinkedIn: https://www.linkedin.com/in/hyunwoo-lee- 0412 / Medium: https://medium.com/@l 2 hyunwoo Velog: https://velog.io/@l 2 hyunwoo
From code to application 목차 Motivation React Native에 대한 간략한
소개
Motivation 이번 세션을 준비한 동기 누가 들으면 좋을까요?
Motivation
Motivation
Motivation 그래서 어떻게 돌아가죠?
Introduction to React Native Learn Once, Write Anywhere
React Native
React Native • 플랫폼별로 android/ios 폴더가 존재 • 플랫폼 빌드를
위한 여러가지 파일들이 포함되어 있음 • 이외의 Javascript 관련파일 구성 사항들은 React 프로젝트와 거의 동일
Fron code to application JavaScript에서 하나의 모바일 앱으로
// A.tsx <View> <Text>Hello A!</Text> </View> // B.tsx <View> <Text>Hello
B!</Text> </View>
JavaScript의 언어특성 • JavaScript는 모듈화된 자바스크립트 파일들을 읽어내지 못함 •
여러 파일들을 하나의 파일로 만들어주는 도구가 필요함 // A.tsx <View> <Text>Hello A!</Text> </View> // B.tsx <View> <Text>Hello B!</Text> </View>
Bundler 여러 모듈/파일을 하나의 파일로 묶는다
None
React Native - Metro • 번들링 • 유틸성 코드 주입(Polyfill)
• console.log를 네이티브에서 기록하기 위한 기능 • 리액트 네이티브 초기화(InitializeCore)
React Native - Metro • 번들링 • 유틸성 코드 주입(Polyfill)
• console.log를 네이티브에서 기록하기 위한 기능 • 리액트 네이티브 초기화(InitializeCore)
코드 변환 - Babel 메트로에 의해 번들링된 코드를 React Native
실행환경에 맞게 변환하는 과정 Babel이라는 라이브러리 활용 중
Runtime 코드가 실행되는 환경
None
None
None
First Choice - JSC(JavaScript Core) • Apple에서 제공하는 JavaScript Runtime
• JSC를 활용해서 리액트 네이티브를 돌아가게 만들 수 있었지만 • C 기반 API • 브릿지가 가져가야하는 너무 많은 책임들 • JSC와 리액트 네이티브의 강결합 • 이와 같은 문제점들이 대두됨
엔진을 추상화해볼까? - JSI
JSI의 Data Flow (Native to JS) • Android/iOS에서는 C++로 명령을
보내면서 JSI(shared memory layer 에서) 호출 • 메모리 업데이트 되면 JS에 반영이 되어서 표시됨
JSI의 Data Flow (JS to Native Module) 1 . 네이티브
모듈을 호출하면 JS엔진에 자바스크립트 값을 전달한다.
JSI의 Data Flow (JS to Native Module) 2 . HostFunction로
이 값이 전달되고. 함수는 이를 C++ dynamic으로 변환 한다.
JSI의 Data Flow (JS to Native Module) 3 . 이
값은 네이티브 모듈 인프라로 전달 된다. 4 . 플랫폼에서는 이를 플랫폼 타입으로 변환하고 메서드 호출하는 것을 확인
JSI를 활용한 Rendering 전략
And Next React Native is evolving right now.
New Architecture - Three Pillars • Turbo Module • Fabric
• Codegen
New Architecture - Three Pillars • Turbo Module • 특정
모듈을 지연 초기화시켜 앱 시작 속도 개선 • Fabric • 새로운 UI 렌더링 아키텍처. • 유저 인터랙션(스크롤, 제스처)을 메인스레드/네이티브 스레드에서 동기적으로 처리 • Codegen • 플랫폼 코드의 타입을 JS에서도 활용할 수 있게 정적 타이핑 지원 • TypeScript 활용시 이득
None
None