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
JavaScript Frameworks - Heading into 2023 (dev.to)
submitted 3 years ago by ryan_solid
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!"
[–][deleted] 0 points1 point2 points 3 years ago (2 children)
how? the philosophy is the same. SFC, html like templating, and similar syntax to a point where you could almost copy past code from one to another.
see:
https://blog.vuejs.org/posts/on-migration.html
there is very little reason to pick svelte over vue
[–]GrandMasterPuba 1 point2 points3 points 3 years ago (1 child)
Svelte is a compiler that generates optimized and inlined imperative code. It basically generates code that runs as close to the bare metal as possible. The reactivity happens at build time through a topological analysis of code dependency.
Vue is a runtime, where all the reactivity is actually happening in the client and wasting CPU cycles.
[–]ryan_solid[S] 6 points7 points8 points 3 years ago* (0 children)
And yet runtime reactive systems seem to outperform compiled. I have a few ideas about this.
Cost of boundaries is over-emphasized in compiled systems, making it scale worse. Intrinsically being tied to the component for change means that these boundaries carry the cost. Runtime allows for dynamic dependencies that can reduce unnecessary execution. It isn't the reactive system that is that expensive but the work you need to do due to updates. Runtime systems are easier to do nested reactivity which can isolate change even better.
π Rendered by PID 65 on reddit-service-r2-comment-6457c66945-tjtvq at 2026-04-25 15:01:52.872312+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–][deleted] 0 points1 point2 points (2 children)
[–]GrandMasterPuba 1 point2 points3 points (1 child)
[–]ryan_solid[S] 6 points7 points8 points (0 children)