DEV Community

Discussion on: Working with forms in SvelteKit coming from React

Collapse
 
polaroidkidd profile image
Daniel Einars

The funny thing is, Svelte uses attributes which are fast closer to using native html forms than react. Svelte will also work without any JavaScript enabled on the client.

Personally, I went ahead and started using the svelte superforms library and can really recommend it.

This isn't criticism of the article, I really enjoy seeing more Svelte content on here and yours is s great example! I only really started learning how massive web development was supposed to work when working with svelte.

Collapse
 
nicholascostadev profile image
Nicholas Costa

My goto way of doing forms with svelte is also using superforms to handle everything, it makes our life much easier, but I thought that would be a little overhead for an introductory article.

Collapse
 
polaroidkidd profile image
Daniel Einars

Yeah, superforms can get advanced quickly. Definitely a good call!