DEV Community

Discussion on: I want to start to learn a javascript framework

Collapse
 
boredcity profile image
boredcity

Svelte if you want to ship less code to the client.
Qwik if you REALLY want to ship less code to the client.
React if you want to get a job.

Collapse
 
fabiodev30 profile image
fabiodev30

what do you think about remix?

Collapse
 
lexlohr profile image
Alex Lohr

Svelte is great for small apps, but inexplicably does not scale well. If you are serious about shipping less code, try the experimental islands architecture with hybrid routing based on solid start.

I agree on react for landing a job.

Collapse
 
fabiodev30 profile image
fabiodev30

what do you think about remix?
i know that use react

Thread Thread
 
lexlohr profile image
Alex Lohr

Remix is just react on server steroids. A good choice for fast and convenient prototyping. If bundle size matters, choose something else.