(Next.js/Nuxt pendant based on Svelte, can also be used as static site generator).
How I made a website with Svelte
41–50 of 130 posts
Re: How I made a website with Svelte
#42Re: How I made a website with Svelte
#43Re: How I made a website with Svelte
#44https://bestof2019.johanronsse.be just shows an empty page. (oh how far we've come - a simple best of list requires javascript)
Thanks for the quick link. Complaining about a web page not working with js disabled is just noise, especially on a 'made with {framework}' post.
Edited to add: to be clear, I mean while still using the framework.
Re: How I made a website with Svelte
#45Svelte looks interesting, however I must say that when I saw stuff like `{#if value} stuff {/if}` it really was a turn off for me. One thing I really like about React is the lack of template logic like that. This was something I never cared for in Angular 1 either. I am sure that there are many advantages to it...its just never really resonated with me. Can anyone point to material that could help me understand the v…
Re: How I made a website with Svelte
#46Svelte looks interesting, however I must say that when I saw stuff like `{#if value} stuff {/if}` it really was a turn off for me. One thing I really like about React is the lack of template logic like that. This was something I never cared for in Angular 1 either. I am sure that there are many advantages to it...its just never really resonated with me. Can anyone point to material that could help me understand the v…
Re: How I made a website with Svelte
#47Svelte looks interesting, however I must say that when I saw stuff like `{#if value} stuff {/if}` it really was a turn off for me. One thing I really like about React is the lack of template logic like that. This was something I never cared for in Angular 1 either. I am sure that there are many advantages to it...its just never really resonated with me. Can anyone point to material that could help me understand the v…
In react, there are as many ways to do the same things as there are coders. And of course, some don't follow best practices and will put logic code in it.
Personnally I also find it easier to picture the resulting DOM structure because the stylee is forced to be declarative. Too often in react I have to look around a tag to know whats hapening, or I have to follow some nested map/filter/ternary chaining.
Very good react coders will not do that. They will use a lot of tooling and abstract formatting a lot. But they are few.
Re: How I made a website with Svelte
#48Re: How I made a website with Svelte
#49Re: How I made a website with Svelte
#50Is there an auto formatter that makes my code shift around and have one-true-style? This is a most for any long lived project as it avoid all bikeshedding discussions about style. We use Prettier for JS, and mix format for Elixir, at work.