DEV Community

Discussion on: 🚀10 Trending projects on GitHub for web developers - 2nd July 2021

Collapse
 
iainfreestone profile image
Iain Freestone

I have only heard great things about Svelte and SvelteKit. Looking forward to trying it out on a soon,

Collapse
 
theonlytails profile image
TheOnlyTails

It's a wonderful framework! I think the button incrementer example shows exactly why Svelte is so loved:

<script lang="ts"> <!-- notice the easy typescript support! -->
  export let count: number;
</script>

<button on:click={() => count++}>Number: {number}</button>
Enter fullscreen mode Exit fullscreen mode

Making things reactive is so easy, not to metion the built-in transitions, if statements and loops, inline await-then-catch syntax, and more.