DEV Community

Discussion on: Why SvelteJS may be the best framework for new web devs

Collapse
 
lautiamkok profile image
LAU TIAM KOK • Edited

What stops me from using Svelte:

{#each profiles as profile}
    <li>{profile.name}: {profile.role}</li>
{/each}
Enter fullscreen mode Exit fullscreen mode

That, you will up writing more in your templates, not less. You will get lost eventually when you have a long content in the each or if blocks. You might forget to close the blocks or misplacing the closing tags.

That will look messy and hard to read when you have nested blocks.

It isn't the best "framework" for developer yet. Might be in the future if they evolve to the right direction.