TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: I am confused about ReactJS Native

2 pointsby yuashizukiover 10 years ago
I understand that ReacJS works natively and that there is no DOM. But isn&#x27;t it just that. A web view builds views from the html file, but react js builds it with native function calls and its own renderer. After all the over head of javascript still exists.<p>&gt;&gt; ReactJS native just replaces the DOM rendering part of webview with something else of its own.

2 comments

evvover 10 years ago
React Native does not use a webview.<p>The overhead comes from a slow DOM and other browser cruft like over-complicated CSS. We&#x27;ve found that Javascript itself is actually quite fast.<p>We are no longer constrained by browser APIs. For example, we can access native device features, and we can also integrate other native components into React Native apps.
yuashizukiover 10 years ago
Basicaly its nothing but a new webview, offcourse with privilage api access.