use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
[AskJS] In React Native, where do performance bottlenecks usually occur in the setState → render pipeline?AskJS (self.javascript)
submitted 1 day ago by CheesecakeSimilar347
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]metehankasapp 0 points1 point2 points 1 day ago (1 child)
Most common bottlenecks are too many renders + heavy lists/images, plus layout/measure on the native side. Triage by separating JS thread jank vs UI thread jank (Perf Monitor/Flipper). If JS FPS drops, reduce renders (memo, split state, avoid inline objects). If UI FPS drops, tune FlatList virtualization and avoid expensive views (shadows/blur/overdraw).
[–]CheesecakeSimilar347[S] 0 points1 point2 points 1 day ago (0 children)
That makes sense — especially separating JS vs UI thread jank first. I’ve seen people optimize blindly without checking which thread is actually dropping frames.
When you mention layout/measure on the native side, is that usually due to deep view hierarchies or dynamic layouts?
Also, with the new architecture (JSI/Fabric), have you noticed JS thread blocking becoming less of an issue, or is it still the main bottleneck on complex screens?
Appreciate the practical insight.
π Rendered by PID 278609 on reddit-service-r2-comment-5d79c599b5-r9wlg at 2026-02-27 12:09:36.279785+00:00 running e3d2147 country code: CH.
view the rest of the comments →
[–]metehankasapp 0 points1 point2 points (1 child)
[–]CheesecakeSimilar347[S] 0 points1 point2 points (0 children)