Dex-chan lover
- Joined
- Jan 11, 2023
- Messages
- 597
Hello Dex-chan enjoyers!
Before we begin, you'll need to understand:
Secondly, I was curious about your favorite JavaScript Framework and why you use it.
Maybe we could find something interesting to learn here.
Lastly, I'm not a JavaScript Framework expert.
During those past 3 years, I could only learn (and somewhat master) 2 JS frameworks:
And my favorite is Svelte.
Why?
Before we begin, you'll need to understand:
- What is a Javascript Framework?
- Why and When you need one?
Why you will regret using it someday in the future?
Secondly, I was curious about your favorite JavaScript Framework and why you use it.
Maybe we could find something interesting to learn here.
Lastly, I'm not a JavaScript Framework expert.
During those past 3 years, I could only learn (and somewhat master) 2 JS frameworks:
And my favorite is Svelte.
Why?
- No Virtual DOM
- The syntax is more verbose and easy to understand
- Better styling solution: In Svelte, you have the built-in
<style/>
tag to style a componnent with CSS or whatever preprocessor you like - A powerful state management: Svelte have something called Stores that allows you to quickly share state between multiple componnents
- Easy to integrate with existing Vanilla Javascript Libraires like floating-ui, particles-ts
- A extremely powerful transition and animation engine
- An easy async/await handling (no more strange package to install to handle promise)
- this
$:
thing to handle effect and derived state - a small ecosystem