Will Braunblog.willbraun.dev·Nov 25, 2024My Experience Upgrading to Svelte 5Svelte 5 is out! It's packed with new features and I've heard good reviews so far, but I hadn’t had a chance to dive in until now. I've spent the last year building a SvelteKit web app using Svelte 4 (racquetrivals.com, come play). For comparison, th...2 likes·126 readsSvelte
Alain Iglesiasblog.aiherrera.com·Nov 18, 2024Part 2: Svelte 5 Reactivity and the Role of RunesImportance of reactivity in web development frameworks In today’s development world, reactivity has become an essential feature for modern web development frameworks. This is because reactivity allows the user interface to automatically update in res...46 readsMastering Svelte 5Runes
Alain Iglesiasblog.aiherrera.com·Nov 8, 2024Start Your Journey with Svelte 5: A Beginner's HandbookWhat Makes Svelte 5 Different? Svelte 5 is a compiler-based framework that takes a unique approach to web development. Unlike frameworks like React and Vue that use a Virtual DOM to manage reactivity, Svelte compiles your code to vanilla JavaScript d...285 readsMastering Svelte 5Svelte5
Dhawal Pandyadhawalpandya01.hashnode.dev·Jun 19, 2023Runes in GolangIn Go, a rune is a built-in type that represents a Unicode code point. It is an alias for the int32 type and can store any valid Unicode code point, ranging from 0 to 0x10FFFF. The concept of runes in Go is essential for working with Unicode characte...102 readsGo Language