/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

gitcontext.com
| | codepeer.com
0.0 parsecs away

Travel
| | We recently upgrade the CodePeer front-end from Svelte 4 to Svelte 5. In this blog post we compare Svelte 5 to Svelte 4, outline how the upgrade process went, and highlight a few pitfalls you might run into.
| | svelte.dev
4.3 parsecs away

Travel
| | Rethinking 'rethinking reactivity'
| | khromov.se
4.0 parsecs away

Travel
| | Watch a video version of this blog post below! Svelte 5 brings a lot of changes, from the new Runes-based syntax to deep reactivity and performance improvements across the board. But one aspect that's flown under the radar is the massive reduction in bundle size. In my experiments, you can get about 50% decrease in code shipped to users, just by upgrading to Svelte 5 in your existing Svelte 4 applications! The New Compiler Architecture Svelte 5 introduces a small signals runtime (about 3-4 KB) alongside the compiler. While this adds a bit of code, it allows individual components to [...]
| | blog.hmpl-lang.dev
14.6 parsecs away

Travel
| Hello everyone! In this article, I'll show you how to create reactive HTML interfaces without relying on heavy JavaScript frameworks like Vue or Angular. We'll explore how HMPL.js provides a lightweight alternative that achieves reactivity through server-side rendering while keeping your client-side code minimal. The Problem with JavaScript Frameworks In...